First, the following tools and frameworks need to be installed on your system:
Second, fork the repository and run the following commands to clone the repository locally.
git clone https://github.com/{your-account}/rocketnotes.git
cd rocketnotes
docker-compose up dynamodb s3 -d
sh ./dynamodb-init.sh
sam build
sam local start-api --docker-network rocketnotes_local-serverless-network --warm-containers EAGER
export BASE_API_URL="http://localhost:3000"
cd webapp
npm install
npm run start
Open http://localhost:4200 in your browser and you should see the Rocketnotes webapp with the cheat sheet of the default user displayed.
NOTE: Authentication is disabled in dev environment.
Pull requests are the best way to propose changes to the codebase. We actively welcome your pull requests:
- Fork the repo and create your branch from
main
. - If you've added code that should be tested, add tests.
- If you've changed APIs, update the documentation.
- Ensure the test suite passes.
- Make sure your code lints.
- Issue that pull request!
In short, when you submit code changes, your submissions are understood to be under the MIT License that covers the project. Feel free to contact the maintainers if that's a concern.
We use GitHub issues to track public bugs. Report a bug by opening a new issue.
Great Bug Reports tend to have:
- A quick summary and/or background
- Steps to reproduce
- Be specific!
- Give sample code if you can.
- What you expected would happen
- What actually happens
- Notes (possibly including why you think this might be happening, or stuff you tried that didn't work)
By contributing, you agree that your contributions will be licensed under the MIT License.