-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdev.env
More file actions
36 lines (31 loc) · 956 Bytes
/
dev.env
File metadata and controls
36 lines (31 loc) · 956 Bytes
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
35
36
# Database settings
DB_USER=proxbox
DB_PASSWORD=devpassword
DB_NAME=proxbox
DB_HOST=db
DB_PORT=5432
# Proxmox settings - Replace with your actual Proxmox details
PROXMOX_HOST=https://proxmox.example.com:8006
PROXMOX_USER=root@pam
PROXMOX_TOKEN_NAME=proxbox
PROXMOX_TOKEN_VALUE=your-token-value
PROXMOX_VERIFY_SSL=false
# App settings
SECRET_KEY=e0ca1687a4a0c91e810b8b2ec17d64c9b1ad38ad87c5d8ede9b49c3f6d48
ALGORITHM=HS256
ACCESS_TOKEN_EXPIRE_MINUTES=30
REFRESH_TOKEN_EXPIRE_DAYS=7
# LDAP settings (optional)
LDAP_ENABLED=false
LDAP_SERVER=ldap://ldap.example.com
LDAP_BASE_DN=dc=example,dc=com
LDAP_USER_DN=ou=users
LDAP_ADMIN_GROUP=cn=admins,ou=groups,dc=example,dc=com
# OAuth settings (optional)
OAUTH_ENABLED=false
GITLAB_CLIENT_ID=your-gitlab-client-id
GITLAB_CLIENT_SECRET=your-gitlab-client-secret
GITLAB_CALLBACK_URL=http://localhost:8000/api/auth/callback/gitlab
# Frontend settings
VITE_API_URL=http://localhost:8000/api
NODE_ENV=development