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
Copy `.env.example` to `.env` and set at least `DATABASE_URL` and `JWT_SECRET`.
109
111
112
+
**Troubleshooting —**`ModuleNotFoundError: No module named 'pydantic._internal._signature'`: your environment has an **outdated Pydantic 2** (e.g. 2.5) while `pydantic-settings` expects internal modules from newer releases. Upgrade the venv:
113
+
114
+
```bash
115
+
pip install -U -r requirements.txt
116
+
```
117
+
118
+
(`requirements.txt` now pins **pydantic ≥ 2.10**.)
119
+
110
120
### Database
111
121
112
122
```bash
@@ -163,12 +173,14 @@ On **Windows**, if you use **`--reload`** with **Vinted** publishing (nodriver /
163
173
python run_dev.py
164
174
```
165
175
166
-
or explicitly (Windows only — stdlib `ProactorEventLoop` class):
176
+
or explicitly (Windows only — with **uvicorn ≥ 0.30**, use the `asyncio` loop key, not a stdlib import string):
0 commit comments