The repo for the YSWS Pancakes!
First, clone the repository and navigate into it.
git clone https://github.com/hackclub/pancakes
cd pancakesNext, before running, install dependencies.
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txtFinally, you'll want to use the following command to run it in development mode.
fastapi dev main.pyOtherwise, if you are instead intending on running your own instance (though I don't really see a need for it...), run the following command:
fastapi run main.pyYou should be good to go! PRs are very appreciated!