Skip to content

Latest commit

 

History

History
49 lines (34 loc) · 1.53 KB

README.md

File metadata and controls

49 lines (34 loc) · 1.53 KB

Mix-up Analysis Web App

code style: prettier

FastAPI Svelte TailwindCSS Docker

Mixup analysis app

A web app to more easily create mix-up analyses for Wavu Wiki. Based on the work done by RodgerDodger.

Installation

Using Docker

git clone [email protected]:AbhijeetKrishnan/mixup-analysis-app.git
cd mixup-analysis-app
docker compose up -d --build

Note: Will take a long time at the step to build the pygambit wheel!

The web app will be live at http://localhost:3000/.

Without Docker

git clone [email protected]:AbhijeetKrishnan/mixup-analysis-app.git
cd mixup-analysis-app

# Start backend server at http://localhost:8000/
cd backend
python3 -m pip install -r requirements.txt
python3 main.py

# Build frontend
cd frontend
npm install
npm run build

# Start frontend server at http://localhost:3000/
node build

The web app will be live at http://localhost:3000/.