Flask + SQLAlchemy simple login/registration system. In the system there is the admin user who has permission to create users. Ordinary users cannot create users.
Install the Python requirements:
python3 -m pip install -r requirements.txt
Initialize the database:
cd server
python3 app.py initdb
Run with the builtin (debug) server:
python3 app.py runserver -h 0.0.0.0 -p 8080 --threaded
The server should now be accessible on http://localhost:8080