Added register page, email field, finished login + register UI, reduced the number of templates generated.

This commit is contained in:
2025-12-06 14:45:23 +01:00
parent e749ec772e
commit 5732fe17de
27 changed files with 889 additions and 284 deletions

View File

@@ -9,6 +9,10 @@ services:
- app_net
- pagerino_net
restart: on-failure:3
environment:
CHIRP_ADDRESS: ${CHIRP_ADDRESS}
SERVER_API_PORT: ${SERVER_API_PORT}
APP_ID: ${APP_ID}
pagerino_db:
image: postgres:15
@@ -27,6 +31,19 @@ services:
# ports:
# - "5432:5432"
migrate:
image: migrate/migrate
networks:
- app_net
volumes:
- ./migrations:/migrations
command: [
"-path", "/migrations",
"-database", "postgres://${DB_USER}:${DB_PASSWORD}@${DB_NAME}:5432/pagerino_db?sslmode=disable",
"up"
]
depends_on:
- pagerino_db
volumes:
dbdata: