You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you already cloned without `--recurse-submodules`, run:
15
+
16
+
```bash
17
+
git submodule update --init --recursive
18
+
```
19
+
7
20
## Features
8
21
9
22
-**FastAPI** - Modern, fast web framework for building APIs
@@ -157,6 +170,20 @@ This project uses modern Python development tools:
157
170
158
171
This application uses in-memory storage (Python lists/dicts). Data will be lost when the application restarts. This is intentional for simplicity and is suitable for interview/demo purposes.
159
172
173
+
## Frontend Challenge
174
+
175
+
This repo includes the [react-interview](https://github.com/crunchloop/react-interview) project as a git submodule in the `react-interview/` directory.
176
+
177
+
To run the frontend:
178
+
179
+
```bash
180
+
cd react-interview
181
+
npm install
182
+
npm run dev
183
+
```
184
+
185
+
The React app will be available at http://localhost:5173.
0 commit comments