-
Start the service by - python3 -m venv pip install -r requirements.txt dbmate -u 'postgres://<db_user>:<db_pass>@localhost:/<db_name>?sslmode=disable' up sanic service:app --debug --reload
-
Please do not install the latest version of dependencies, there are several models which won't work with the current code.
-
If you import any dependency in the file, then please use. isort <file_name> this will sorts those imports.
PR Guidelines
- Don't use git commit -m "commit message". Instead, use, "git commit" and mention title as well as message.
- commits should be squashed and rebase with the commit, there should not be history, small sub-commits or fixup commits.
- Don't use git add . (please use, git add -u) and verify after adding if all correct files are tracked.