Skip to content

Commit 7904869

Browse files
committed
dachary feedback
1 parent 605e3af commit 7904869

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

mflix/README-PYTHON-FASTAPI.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff 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
3434
Navigate to the Python FastAPI server directory:
3535

3636
```bash
37-
cd server/python-fastapi
37+
cd server/
3838
```
3939

4040
Create 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
8888
fastapi dev main.py --reload
@@ -143,7 +143,7 @@ The Python FastAPI backend uses:
143143
To run all tests:
144144

145145
```bash
146-
cd server/python-fastapi
146+
cd server/
147147
source .venv/bin/activate # or `.venv\Scripts\activate` on Windows
148148
pytest tests/ -v
149149
```

0 commit comments

Comments
 (0)