Skip to content

Commit bfe0a80

Browse files
authored
Add initial README.md for POEM Browser project
1 parent 553c2d1 commit bfe0a80

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

browser/README.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# POEM Browser
2+
3+
## Tech Stack
4+
Frontend: React + Vite + Tailwind
5+
Backend: FastAPI + rdflib
6+
7+
## Prerequisites
8+
Frontend:
9+
Node 20+
10+
Backend:
11+
Python 3.11+
12+
13+
## Frontend Setup (REACT + Vite)
14+
cd frontend/
15+
npm install
16+
npm run dev
17+
Runs on http://localhost:5173
18+
19+
## Backend setup (FASTAPI)
20+
cd backend/
21+
python -m venv venv
22+
Mac/Linux: source venv/bin/activate
23+
Windows: venv\Scripts\activate
24+
pip install -r requirements.txt
25+
uvicorn main:app --reload
26+
Runs on http://127.0.0.1:8000
27+

0 commit comments

Comments
 (0)