Pothole Tracking and Repair System (PTRS) project for COSC319 at IUP.
- Start by installing the pixi package manager on your machine.
- Clone and change into the repository to your machine.
- Run
pixi install
to install necessary dependencies. - Activate the pixi virtual environment. You can do this by either setting your Python interpreter path to
.pixi/envs/default/bin/python
or activating the pixi shell viapixi shell
. - Change to the
src/ptrs/app
directory, then launchapp.py
. If you don't have a proper WSGI server, you can use the default Flask one by simply runningpython app.py
. For a production WSGI server (e.g. gunicorn), you'll need to point it to theapp.py
module.PTRS
leveragesFlask
, so see the related documentation for launching the app with other WSGI servers.