- Running over Python Flask microframework
- Database abstraction layer with Flask-SQLAlchemy
- Automatic creation of the database and its tables (if not exist)
- User session management with Flask-Login
- Account management page for create and remove users
- Visual design and implementation of login/logout
Install the necessary dependencies from Python Command Line
$ python -m pip install Flask Flask-SQLAlchemy Flask-Login
or from pip3
tool
$ pip3 install Flask Flask-SQLAlchemy Flask-Login
Start the development server and browse to http://localhost:80
$ python run.py
Optionally you can execute the file run.bat
in Windows or run.sh
in Linux respectively
- You can change the current port of the development server or another parameters in the file
config.py
(root folder) - The default values for the Username and Password is
admin
in both cases. You can change this in the fileconfig.py
(root folder)