/SLR-Compiler-and-FastAPI

FastAPI web app for SLR Compiler

Primary LanguagePython

SLR Compiler with FastAPI

Create and activate a new venv environment

1. python -m venv venv
2. venv\Scripts\activate.bat (windows) ||
   source venv/bin/activate (linux)

Install requirements.txt

pip install -r requirements.txt

Run the FastAPI app

uvicorn main:app --reload