File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,9 +5,9 @@ This is a full-stack movie browsing application built with Python FastAPI and Ne
55## Project Structure
66
77```
8- ├── README-PYTHON-FASTAPI .md
8+ ├── README.md
99├── client/ # Next.js frontend (TypeScript)
10- └── server/python-fastapi/ # Python FastAPI backend
10+ └── server/ # Python FastAPI backend
1111 ├── src/
1212 ├── tests/
1313 ├── .env.example
@@ -34,7 +34,7 @@ This is a full-stack movie browsing application built with Python FastAPI and Ne
3434Navigate to the Python FastAPI server directory:
3535
3636``` bash
37- cd server/python-fastapi
37+ cd server/
3838```
3939
4040Create a ` .env ` file from the example:
@@ -82,7 +82,7 @@ pip install -r requirements.txt
8282
8383### 2. Start the Backend Server
8484
85- From the ` server/python-fastapi ` directory, run:
85+ From the ` server/ ` directory, run:
8686
8787``` bash
8888fastapi dev main.py --reload
@@ -143,7 +143,7 @@ The Python FastAPI backend uses:
143143To run all tests:
144144
145145``` bash
146- cd server/python-fastapi
146+ cd server/
147147source .venv/bin/activate # or `.venv\Scripts\activate` on Windows
148148pytest tests/ -v
149149```
You can’t perform that action at this time.
0 commit comments