python -m venv venv
.\venv\Scripts\Activate
pip install -r requirement.txt
uvicorn backend.main:app --reload
streamlit run frontend/landing_page.py
psql -U postgres -h localhost -p 5432
\c course_planner course_planner_user
cd backend python -m venv venv venv\Scripts\activate pip install -r requirements.txt
cd frontend npm install npm run dev
/your-project/ ├── .env ← Backend secrets (used by FastAPI) ├── backend/ │ └── main.py ├── react-frontend/ │ ├── .env ← Frontend variables (e.g., VITE_COHERE_API_KEY) │ └── vite.config.js