mirror of
https://github.com/offen/website.git
synced 2024-11-22 09:00:28 +01:00
.. | ||
accounts | ||
scripts | ||
tests | ||
.gitignore | ||
bootstrap.yml | ||
Makefile | ||
README.md | ||
requirements-dev.txt | ||
requirements.txt | ||
serverless.yml |
accounts
The accounts
app is responsible for managing operator accounts and issuing authentication tokens that will identify requests made to the server
and the kms
service.
The application is built using the Flask framework.
Development
Commands
Install dependencies
pip install --user -r requirements.txt -r requirements-dev.txt
Run the development server
FLASK_APP=accounts FLASK_ENV=development flask run
Run the tests
make test
Auto format code using black
make fmt