feat(frontend):优化前端页面设计

This commit is contained in:
2026-05-29 16:44:17 +00:00
parent a83c5fa5bd
commit affe460180
80 changed files with 2670 additions and 2678 deletions
+3 -6
View File
@@ -1,12 +1,10 @@
version: '3.8'
services:
db:
image: postgres:16-alpine
container_name: kilostar_db
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgrespassword
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-postgrespassword}
POSTGRES_DB: kilostar
ports:
- "5432:5432"
@@ -27,9 +25,8 @@ services:
condition: service_healthy
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgrespassword
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD:-postgrespassword}
- POSTGRES_HOST=db
- POSTGRES_PORT=5432
- POSTGRES_DB=kilostar
- SECRET_KEY=changethiskey12345
- SECRET_KEY=${SECRET_KEY:?SECRET_KEY must be set; generate one via: python -c \"import secrets;print(secrets.token_urlsafe(32))\"}