UniHive is what is happening on your campus academically.
Serving the academic discourse.
A project made for EECS 581 (Software Engineering II)
- Make a virtual environment
$ python -m venv .venv
- activate the virtual environment
. .venv/bin/activate
- install flask
$ pip install Flask
Or follow the official Flask docs: https://flask.palletsprojects.com/en/3.0.x/installation/
In the project root directory:
$ python3 app/main.py
Alternatively you can use the flask command to start:
$ flask --app app/main run --debug
The command line output should be running and show a localhost url:
For example:
$ Running on http://127.0.0.1:5000
Copy and paste this url into your browser
- Flask
- Sqlite
- Bootstrap
When working with the database, feel free to wipe unihive.db
to clear out
existing state. This is needed after changes to table schema, etc.