Flask Configuration Mechanism

config_flask is toolset for configuration setup of Flask App.

Developed in python code: 100%.

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.

config_flask python checker config_flask package checker

config_flask github issues config_flask github contributors

config_flask documentation Status

Installation

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.

Dependencies

config_flask requires other modules and libraries
  • coverage

  • Flask

  • Flask-Migrate

  • Flask-Script

  • Flask-Login

  • Flask-BCrypt

  • Flask-Bootstrap

  • Flask-DebugToolbar

  • Flask-SQLAlchemy

  • Flask-Testing

  • Flask-WTF

  • WTForms

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