Skip to content

thrila/solar_atlas

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

52 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Running Frontend & Backend

This repo has two apps:

  • Frontend → Vite + React (/frontend)
  • Backend → FastAPI (/backend)

1. Install Dependencies

Frontend

cd frontend
npm install

Backend

cd backend
pip install -r requirements.txt

2. Run the Apps

Frontend (Vite Dev Server)

cd frontend
npm run dev

Backend (FastAPI with Uvicorn)

cd backend
uvicorn app:app --reload