Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time

FrontEndWebserver

Welcome!

Please ensure to install all of the dependencies listed below: python -m pip install...
requests
json
flask
flask-dotenv
flask-wtf
flask-sqlalchemy
flask-migrate
flask-login

Now navigate to the folder where this file is located and type the following: IF USING 64-BIT: python -m flask run IF USING 32-BIT: flask run

--- DATABASE ---

If you wish to refresh the database:

  1. Delete app.db
  2. python -m flask db init
  3. python -m flask db migrate

If you wish to update the database with new tables, etc:

  1. python -m flask db upgrade
  2. python -m flask db migrate

NOTE: IF this doesnt work, go to refresh the database as instructed above.