Flask Configuration MechanismΒΆ

☯️ config_flask is toolset for configuration setup of Flask App.

Developed in 🐍 python code.

codecov circleci

The README is used to introduce the modules and provide instructions on how to install the modules, any machine dependencies it may have and any other information that should be provided before the modules are installed.

python checker python package github issues documentation status github contributors

InstallationΒΆ

ubuntu linux os

Navigate to release page download and extract release archive πŸ“¦.

To install config_flask πŸ“¦ type the following

tar xvzf config_flask-x.y.z.tar.gz
mv config_flask-x.y.z/app_server/configuration /FlaskApp/app_server/

You can use Docker to create image/container 🚒.

github docker checker

DependenciesΒΆ

config_flask requires other modules and libraries

  • none

Package structureΒΆ

🧰 Expected configuration structure

app_server/
β”œβ”€β”€ configuration/
β”‚Β Β  β”œβ”€β”€ database/
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ development_config.py
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ __init__.py
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ production_config.py
β”‚Β Β  β”‚Β Β  └── test_config.py
β”‚Β Β  β”œβ”€β”€ development_config.py
β”‚Β Β  β”œβ”€β”€ __init__.py
β”‚Β Β  β”œβ”€β”€ mail/
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ development_config.py
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ __init__.py
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ production_config.py
β”‚Β Β  β”‚Β Β  └── test_config.py
β”‚Β Β  β”œβ”€β”€ production_config.py
β”‚Β Β  └── test_config.py
└── __init__.py

Indices and tablesΒΆ