This is a simple web application that I made as an example. There are many things that I would like to add and improve in this project.
- python3
- virtualenv
$ virtualenv -p python3 venv
$ . venv/bin/activate
$ pip install -r requirements.txt
$ export FLASK_ENV=development
$ export FLASK_APP=run.py
$ flask run
To quit the virtual environment you must execute:
$ deactivate
helpers # Module used for aux functions
models # Model (MVC)
resources # Controllers (MVC)
templates # View (MVC)
db.py # Database instance
__init__.py # App instance and ruting