Uses poetry for dependency management. This is required during development.
- Install with
pip install .
(Usepoetry install
for development) - Copy
.env.example
to.env
and fill in flask run
Inside and_platform
, there are a few folders and files, each folder are the modules (think of it like Django app) except static
.
|
|--- core (Shared code between modules)
|
|--- and_platform (Website backend for AnD)
| |
| |------- models (Database models)
| |------- routes (App routes)
| |------- app.py (App definition)
| |------- extensions.py (Flask extensions)
|
|--- checker (Checker code)
| |------- main.py (Entrypoint)