feat:improved ui for login

This commit is contained in:
2025-09-28 15:02:54 +02:00
parent 925e7163b6
commit bc8a76b9f5
9 changed files with 306 additions and 39 deletions

View File

@@ -1,26 +1,7 @@
services:
db:
image: postgres
restart: always
ports:
- 5432:5432
env_file:
- .env
environment:
POSTGRES_USER: ${POSTGRES_USER:-root}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-mysecretpassword}
POSTGRES_DB: ${POSTGRES_DB:-local}
volumes:
- pgdata:/var/lib/postgresql/data
app:
build: .
ports:
- 3000:3000
env_file:
- .env
environment:
DATABASE_URL: postgres://${POSTGRES_USER:-root}:${POSTGRES_PASSWORD:-mysecretpassword}@db:5432/${POSTGRES_DB:-local}
depends_on:
- db
volumes:
pgdata: