-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
42 lines (35 loc) · 1 KB
/
.env.example
File metadata and controls
42 lines (35 loc) · 1 KB
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
37
38
39
40
41
42
# ConnectWise API Configuration
CW_URL=https://api-na.myconnectwise.net/v4_6_release/apis/3.0
CW_COMPANY=your_company_id
CW_PUBLIC_KEY=your_public_key
CW_PRIVATE_KEY=your_private_key
CW_CLIENT_ID=your_client_id
CW_TICKET_PREFIX=Alert:
# ConnectWise Ticket Defaults
CW_SERVICE_BOARD=Service Board
CW_STATUS_NEW=New
CW_STATUS_CLOSED=Closed
CW_DEFAULT_COMPANY_ID=ConnectWise_Company_ID_For_Tickets
# Redis Configuration
REDIS_HOST=localhost
REDIS_PORT=6379
REDIS_PASSWORD=your_secure_redis_password
# Database Configuration
# DATABASE_URL=sqlite:///hookwise.db
DATABASE_URL=postgresql://hookwise:hookwise_pass@localhost:5432/hookwise
# Flask & Security Configuration
SECRET_KEY=your_very_secret_key
PORT=5000
DEBUG_MODE=false
FORCE_HTTPS=false
USE_PROXY=false
PROXY_FIX_COUNT=1
ENCRYPTION_KEY=your_32_byte_base64_encryption_key
# Web GUI Auth
GUI_USERNAME=admin
GUI_PASSWORD=admin
GUI_TRUSTED_IPS=
# Celery
CELERY_BROKER_URL=redis://:your_secure_redis_password@localhost:6379/0
# Other Configuration
LOG_RETENTION_DAYS=30