refactor: migration from sqlite to postgres with migration script (#483)

This commit is contained in:
2025-07-16 19:38:33 -06:00
committed by GitHub
parent b05fc9c36a
commit 4d21fd1754
5 changed files with 68 additions and 1 deletions

View File

@@ -46,3 +46,18 @@ services:
- ./www:/app/
env_file:
- ./www/.env.local
postgres:
image: postgres:17
ports:
- 5432:5432
environment:
POSTGRES_USER: reflector
POSTGRES_PASSWORD: reflector
POSTGRES_DB: reflector
volumes:
- ./data/postgres:/var/lib/postgresql/data
networks:
default:
attachable: true