The current developer documentation can be found here: https://muse4anything.readthedocs.io/.
This package uses Poetry (documentation).
This package builds on the flask template https://github.com/buehlefs/flask-template
For vscode install the python extension and add the poetry venv path to the folders the python extension searches vor venvs.
On linux:
{
"python.venvFolders": [
"~/.cache/pypoetry/virtualenvs"
]
}
Run poetry install
to install dependencies.
Add .env
file with the following content into the repository root.
FLASK_APP=muse_for_anything
FLASK_ENV=development # set to production of in production!
Run the development server with
poetry run flask run
To compile the frontend run the following commands in the muse-for-anything-ui
folder.
npm install # update/install dependencies
# watching build
npm run watch
# normal build
npm run build
This package uses the following libraries to build a rest app with a database on top of flask.
- Flask (documentation)
- Flask-Cors (documentation)
Used to provide cors headers.
Can be configured or removed inmuse_for_anything/__init__.py
. - flask-babel (documentation, babel documentation)
Used to provide translations.
Can be configured inmuse_for_anything/babel.py
andbabel.cfg
.
Translation files and Folders:translations
(andmessages.pot
currently in .gitignore) - Flask-SQLAlchemy (documentation, SQLAlchemy documentation)
ORM Mapper for many SQL databases.
Models:muse_for_anything/db/models
Config:muse_for_anything/util/config/sqlalchemy_config.py
andmuse_for_anything/db/db.py
- Flask-Migrate (documentation, Alembic documentation)
Provides automatic migration support based on alembic.
Migrations:migrations
- flask-smorest (documentation, marshmallow documentation, apispec documentation, OpenAPI spec)
Provides the API code and generates documentation in form of a OpenAPI specification.
API:muse_for_anything/api
API Models:muse_for_anything/api/v1_api/models
Config:muse_for_anything/util/config/smorest_config.py
andmuse_for_anything/api/__init__.py
- Flask-JWT-Extended (documentation)
Provides authentication with JWT tokens.
Config:muse_for_anything/util/config/smorest_config.py
andmuse_for_anything/api/jwt.py
- Sphinx (documentation)
The documentation generator.
Config:pyproject.toml
anddocs/conf.py
(toml config input is manually configured inconf.py
) - sphinxcontrib-redoc (documantation)
Renders the OpenAPI spec with redoc in sphinx html output.
Config:
docs/conf.py
(API title is read from spec) - flask-static-digest (documentation)
For serving the resources of a javascript SPA
Additional files and folders:
muse-for-anything-ui
Aurelia frontend for the API.default.nix
andshell.nix
For use with the nix ecosystem.pyproject.toml
Poetry package config and config for the black formatter..flake8
Config for the flake8 linter.editorconfig
tests
Reserved for unit tests, this template has no unit tests.instance
(in .gitignore)muse_for_anything/templates
andmuse_for_anything/static
(currently empty)
Templates and static files of the flask appdocs
Folder containing a sphinx documentationtypings
Python typing stubs for libraries that have no type information. Mostly generated with the pylance extension of vscode.
Library alternatives or recommendations:
- For scripting tasks: invoke (documentation) (is already in
pyproject.toml
) - For hashing passwords: flask-bcrypt (documentation)
# initial
poetry run pybabel extract -F babel.cfg -o messages.pot .
# create language
poetry run pybabel init -i messages.pot -d translations -l en
# compile translations to be used
poetry run pybabel compile -d translations
# extract updated strings
poetry run pybabel update -i messages.pot -d translations
# create dev db (this will NOT run migrations!)
poetry run flask create-db
# drop dev db
poetry run flask drop-db
This tool uses select IN
eager loading which is incompatible with SQL Server and SQLite < 3.15
.
# create a new migration after changes in the db
poetry run flask db migrate -m "Initial migration."
# upgrade db to the newest migration
poetry run flask db upgrade
# help
poetry run flask db --help