feat: интерактивный установщик install.sh (Docker / Ubuntu, админ, БД)

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
shop
2026-05-17 13:57:54 +03:00
parent dedef454c8
commit db4bc9bfe1
28 changed files with 1069 additions and 22 deletions
+2 -1
View File
@@ -23,6 +23,8 @@ services:
build: .
container_name: shop-app
restart: unless-stopped
env_file:
- .env
depends_on:
postgres:
condition: service_healthy
@@ -31,7 +33,6 @@ services:
HOST: 0.0.0.0
PORT: 3000
TRUST_PROXY: ${TRUST_PROXY:-0}
SESSION_SECRET: ${SESSION_SECRET:-change-me-in-docker-compose-env}
DATABASE_URL: postgresql://${POSTGRES_USER:-shop}:${POSTGRES_PASSWORD:-shop}@postgres:5432/${POSTGRES_DB:-shop}
ports:
- '${APP_PORT:-3000}:3000'