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 file name to clipboardExpand all lines: backend/README.md
+17-1Lines changed: 17 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,6 +23,8 @@ Automatic interactive documentation with Swagger UI (from the OpenAPI backend):
23
23
24
24
Adminer, database web administration: http://localhost:8080
25
25
26
+
Flower, administration of Celery tasks: http://localhost:5555
27
+
26
28
Traefik UI, to see how the routes are being handled by the proxy: http://localhost:8090
27
29
28
30
**Note**: The first time you start your stack, it might take a minute for it to be ready. While the backend waits for the database to be ready and configures everything. You can check the logs to monitor it.
@@ -63,6 +65,8 @@ Make sure your editor is using the correct Python virtual environment.
63
65
64
66
Modify or add SQLModel models for data and SQL tables in `./backend/app/models.py`, API endpoints in `./backend/app/api/`, CRUD (Create, Read, Update, Delete) utils in `./backend/app/crud.py`.
65
67
68
+
Add and modify tasks to the Celery worker in `./backend/app/worker.py`.
69
+
66
70
### Enabling Open User Registration
67
71
68
72
By default the backend has user registration disabled, but there's already a route to register users. If you want to allow users to register themselves, you can set the environment variable `USERS_OPEN_REGISTRATION` to `True` in the `.env` file.
0 commit comments