* Add users - checkpoint * Working * Finish workflow * switch to cookies instead of bearer token * Fix settings not saved * Add sqlite * Cleanup * Get db url from env var * PR Prep * Maybe later * Code review * Update poetry and readme * Things for status checks * Add chats table to DB * Bad merge * Personal code review * Add default user called system * Fix poetry * fix status checks * Formatting * Fix deleting a chat * Fix bug when auth times out but user isn't logged out * Code review comments * fix lockfile --------- Co-authored-by: Juan Calderon-Perez <835733+gaby@users.noreply.github.com>
22 lines
457 B
YAML
22 lines
457 B
YAML
services:
|
|
serge:
|
|
image: serge
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile.dev
|
|
volumes:
|
|
- ./web:/usr/src/app/web/:z
|
|
- ./api:/usr/src/app/api/:z
|
|
- datadb:/data/db
|
|
- weights:/usr/src/app/weights/
|
|
- /etc/localtime:/etc/localtime:ro
|
|
command: ["sh", "-c", "pip install debugpy -t /tmp && /usr/src/app/dev.sh"]
|
|
ports:
|
|
- 8008:8008
|
|
- 9124:9124
|
|
- 5678:5678
|
|
|
|
volumes:
|
|
datadb:
|
|
weights:
|