Skip to content

Latest commit

 

History

History
executable file
·
203 lines (161 loc) · 7.71 KB

index.rst

File metadata and controls

executable file
·
203 lines (161 loc) · 7.71 KB

Flask Functional-Structured Framework

☯️ flask_func_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 checker python package github issues documentation status github contributors

self

Installation

Navigate to release page download and extract release archive 📦.

To install flask_func_struct 📦 type the following

tar xvzf flask_func_struct-x.y.z.tar.gz
cd flask_func_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_func_struct requires next modules and libraries

alembic                           1.6.5
Flask                             1.1.4
Flask-Bcrypt                      1.0.1
Flask-Bootstrap                   3.3.7.1
Flask-Cors                        3.0.10
Flask-DebugToolbar                0.13.1
Flask-Login                       0.5.0
Flask-Mail                        0.9.1
Flask-Migrate                     2.6.0
Flask-Script                      2.0.6
Flask-SQLAlchemy                  2.5.1
Flask-Testing                     0.8.1
Flask-WTF                         0.14.3
SQLAlchemy                        1.4.27
Werkzeug                          1.0.1
WTForms                           2.3.3

Library structure

flask_func_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
│   └── 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
└── manage.py

Copyright and licence

license: gpl v3 license: apache 2.0

Copyright (C) 2017 by vroncevic.github.io/flask_func_struct

flask_func_struct is free software; you can redistribute it and/or modify it under the same terms as Python itself, either Python version 2.x or, at your option, any later version of Python 2 you may have available.

🌎 🌍 🌏 Lets help and support PSF.

python software foundation

donate

Indices and tables

  • genindex
  • modindex
  • search