I'm really glad you're reading this, because we need volunteer developers to help this project come to fruition.
If you haven't already, you can write to us (#ivory on postgres slack). We want you working on things you're excited about.
Here are some important resources:
- Enhancements
- Good for newcomers
- Supported versions
- Setup Local Environment
- Build Frontend
- Build Backend
We don't have tests yet, so you need to test everything manually and good practice, before creating PR to make regression testing of all functionality. It is not required, but if you not sure or you change some critical part, it is better to spend some time doing this.
Please send a GitHub Pull Request to Ivory with a clear list of what you've done (read more about pull requests).
Always write a clear log message for your commits. One-line messages are fine for small changes, but bigger changes should look like this:
$ git commit -m "A brief summary of the commit
>
> A paragraph describing what changed and its impact."
Start reading our code and you'll get the hang of it. We optimize for readability:
-
Styles (css)
- All styles (css) should be written as
css in js
by usingsx
prop (if it exists in component). - Styles shouldn't be located in
jsx
, the right way is to create constant above the component and to call it asSX
,style
orclass
- All styles (css) should be written as
-
TypeScript
- All types should be created as
interface
in specific folderapp
(except props) Props
types should be created astype
above the component- You should avoid creation of types inside the functions
- All components should be written as function (you can create nested functions inside component if you want to separate logic and simplify code readability, but please try to avoid outer variables, especially if this variable can be used as a prop)
- All types should be created as
-
GO
- in progress
This project has pretty strict coding convention to prevent any misunderstandings, disputes in PRs and simplify code readability. All new proposals about making changes to the coding convention should be discussed among contributors.
Thanks, Andrei Sergeev