-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
34 lines (26 loc) · 882 Bytes
/
.env.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# Telegram Bot Settings
TELEGRAM_BOT_TOKEN=your-telegram-bot-token
# 3x-ui Panel Settings (default credentials, change these)
XUI_USERNAME=admin
XUI_PASSWORD=admin
XUI_PANEL_PORT=54321
# Supabase Settings
SUPABASE_URL=https://your-project.supabase.co
SUPABASE_KEY=your-anon-key
SUPABASE_SERVICE_ROLE_KEY=your-service-role-key
# VPN Service Settings
VPN_DOMAIN=your-vpn-domain.com
# Payment Integration
PAYMENT_CURRENCY=RUB
# Docker Settings
DOCKER_RESTART_POLICY=unless-stopped
# Application Configuration
NODE_ENV=production
PORT=3000
# Admin Panel Configuration
NEXT_PUBLIC_SUPABASE_URL=${SUPABASE_URL}
NEXT_PUBLIC_SUPABASE_ANON_KEY=${SUPABASE_KEY}
NEXT_PUBLIC_API_URL=http://backend:3000
# These secrets should never be committed to the repository
# Generate strong, unique values for each environment (development, staging, production)