Woof YSWS is a YSWS where you code a dog themed website for 5 hours and get a dog plushie! We are sponsored by Hack Club.
Note: Have a look at the website at woof.hackclub.com
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