Flask Module Structured Framework

flask_mod_struct is framework for Flask web apps.

Developed in python code.

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 package GitHub issues Documentation Status GitHub contributors

Installation

Navigate to release page download and extract release archive.

To install this set of modules type the following

tar xvzf flask_mod_struct-x.y.z.tar.gz
cd flask_mod_struct-x.y.z/
pip install -r requirements.txt
cp manage.py /FlaskApp/
cp -R /manage_commands/ /FlaskApp/
cp -R /app_server/ /Flask/

You can use Docker to create image/container.

GitHub docker checker

Dependencies

flask_mod_struct requires next modules and libraries

  • Flask
  • Flask-Migrate
  • Flask-Script
  • coverage
  • WTForms
  • Flask-Login
  • Flask-BCrypt
  • Flask-Bootstrap
  • Flask-DebugToolbar
  • Flask-SQLAlchemy
  • Flask-Testing
  • Flask-WTF

Library structure

flask_mod_struct is based on OOP

Framework 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
│   ├── forms/
│   │   ├── base/
│   │   │   ├── contact.py
│   │   │   └── __init__.py
│   │   ├── __init__.py
│   │   └── user/
│   │       ├── edit.py
│   │       ├── __init__.py
│   │       ├── login.py
│   │       └── register.py
│   ├── __init__.py
│   ├── models/
│   │   ├── __init__.py
│   │   └── model_user.py
│   ├── static/
│   │   ├── base.css
│   │   └── favicon.ico
│   ├── templates/
│   │   ├── base/
│   │   │   ├── about.html
│   │   │   ├── contact.html
│   │   │   └── home.html
│   │   ├── _base.html
│   │   ├── errors/
│   │   │   ├── 401.html
│   │   │   ├── 403.html
│   │   │   ├── 404.html
│   │   │   └── 500.html
│   │   ├── footer.html
│   │   ├── header.html
│   │   └── user/
│   │       ├── administration.html
│   │       ├── edit.html
│   │       ├── login.html
│   │       ├── members.html
│   │       └── register.html
│   ├── tests/
│   │   ├── base_query.py
│   │   ├── helpers.py
│   │   ├── __init__.py
│   │   ├── sqlalchemy_query.py
│   │   ├── test_config.py
│   │   ├── test_main.py
│   │   └── test_user.py
│   └── views/
│       ├── base/
│       │   ├── about.py
│       │   ├── contact.py
│       │   ├── home.py
│       │   └── __init__.py
│       ├── __init__.py
│       └── user/
│           ├── administration.py
│           ├── edit.py
│           ├── __init__.py
│           ├── login.py
│           ├── logout.py
│           ├── members.py
│           └── register.py
├── manage_commands/
│   ├── create_database.py
│   ├── create_data.py
│   ├── create_superuser.py
│   ├── drop_database.py
│   ├── __init__.py
│   ├── orm_test.py
│   ├── run_coverage.py
│   └── run_test.py
└── manage.py

Indices and tables