Installation
- Install Python
- Ensure that python.exe and pip.exe are available in your path
- Install git
- Clone the project with
git clone https://github.com/CouchMaster789/PSS
- Install all Python dependencies by running
pip install -r requirements.txt
(in the root project directory) - Setup the database by running the following commands in order:
flask db init
flask db migrate
flask db upgrade
Updating Versions
- Pull the latest version with
git pull
- Ensure the latest dependencies are installed with
pip install -r requirements.txt
- Update any database model changes with the following commands:
- flask db migrate
- flask db upgrade
Running the WebApp
Enter flask run
into a terminal