Add Go VPN admin panel with Docker Compose and Postgres 17.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
orohi
2026-07-29 03:47:42 +03:00
co-authored by Cursor
parent 23101e355c
commit b1e31430b5
17 changed files with 1229 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
# App
APP_PORT=8080
APP_SECRET=change-me-to-a-long-random-secret-key
APP_ENV=production
# Admin authorization
ADMIN_EMAIL=admin@panel.local
ADMIN_PASSWORD=Admin123!ChangeMe
ADMIN_NAME=Administrator
# PostgreSQL 17
POSTGRES_HOST=postgres
POSTGRES_PORT=5432
POSTGRES_DB=vpn_panel
POSTGRES_USER=vpn_admin
POSTGRES_PASSWORD=VpnDb_Secure_Pass_17
DATABASE_URL=postgres://vpn_admin:VpnDb_Secure_Pass_17@postgres:5432/vpn_panel?sslmode=disable