Woof YSWS is a YSWS where you code a dog themed website for 5 hours and get a dog plushie!
First make a virtual environment:
python -m venv .venv
then activate it on macOS/Linux::
source .venv/bin/activate
on windows:
.\venv\Scripts\activate.bat
Install dependencies:
pip install -r requirements.txt
run the server:
for dev:
flask --app main run --debug
for production: you need to use gunicorn, which I will set up laterr