We love pull requests from everyone. By participating in this project, you agree to abide by the project's code of conduct.
git clone [email protected]:<your-username>/fssk-node.git;
Copy server/.env.example
to server/.env
and client/.env.example
to client/.env
.
cd fssk-node && docker-compose up
docker exec -it fssk-node-server npm run migrate && npm run seed
Add tests for your change.
Make sure the tests pass:
docker exec -it fssk-node-client npm test
docker exec -it fssk-node-server npm test
Lint your code:
docker exec -it fssk-node-client npm run lint
docker exec -it fssk-node-server npm run lint
Push to your fork and submit a pull request.
At this point you're waiting on us. We may suggest some changes or improvements or alternatives.
Some things that will increase the chance that your pull request is accepted:
- Write tests.
- Follow our Project Guideline
- Follow our style guide.
- Write a good commit message.