Skip to content

Latest commit

 

History

History
38 lines (25 loc) · 619 Bytes

README.md

File metadata and controls

38 lines (25 loc) · 619 Bytes

rpg-hell-backend

the backend for the RPG Hell's website

schema

will include:

  • Schema for MySQL database
  • FastAPI backend
  • Docker Image for everything? idk

How to setup

  1. Setup venv
python -m venv .venv
.venv/Scripts/activate (Windows) (or) source .venv/bin/activate (Mac/Linux)

If you run into a "cannot be loaded because running scripts is disabled on this system" error do:

Set-ExecutionPolicy Unrestricted -Scope Process
  1. Install packages
python -m pip install -r requirements.txt
  1. Run API
uvicorn api:app --reload