/guess-my-number

Quick demo of frontend/backend

Primary LanguagePython

Simple demo of Guess My Number with a fastapi backend and vanilla JS frontend

Installation (First Time)

$ cd <project root>/backend
$ python -m venv .venv
$ source .venv/bin/activate
$ pip install -r requirements.txt

Run the project

$ cd <project root>/backend
$ source .venv/bin/activate
$ uvicorn server:app --reload

When finished

$ deactivate