This repository was archived by the owner on Apr 11, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
64 lines (56 loc) · 1.71 KB
/
.env.example
File metadata and controls
64 lines (56 loc) · 1.71 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# ===========================================
# TICOAI Environment Configuration
# ===========================================
# Copy this file to .env and adjust values as needed
# ===========================================
# Application
# ===========================================
NODE_ENV=development
APP_NAME=TICOAI
APP_PORT=3000
APP_URL=http://localhost:3000
API_PREFIX=/api
# ===========================================
# Database (PostgreSQL)
# ===========================================
DB_HOST=localhost
DB_PORT=5432
DB_USERNAME=ticoai
DB_PASSWORD=ticoai_secret
DB_DATABASE=ticoai
# ===========================================
# Redis (Cache, Queue, Session Store)
# ===========================================
REDIS_HOST=localhost
REDIS_PORT=6379
REDIS_PASSWORD=
# ===========================================
# JWT Authentication
# ===========================================
JWT_SECRET=your-super-secret-jwt-key-change-in-production
JWT_ACCESS_EXPIRATION=15m
JWT_REFRESH_EXPIRATION=7d
# ===========================================
# LM Studio (Local LLM)
# ===========================================
LMSTUDIO_URL=http://localhost:1234
LMSTUDIO_MODEL=local-model
# ===========================================
# Email / SMTP (Mailpit in Development)
# ===========================================
SMTP_HOST=localhost
SMTP_PORT=1025
SMTP_USER=
SMTP_PASSWORD=
SMTP_FROM=noreply@ticoai.local
MAILPIT_UI_URL=http://localhost:8025
# ===========================================
# BullMQ Queue
# ===========================================
QUEUE_PREFIX=bull:ticoai
QUEUE_CONCURRENCY=5
# ===========================================
# Frontend (Angular)
# ===========================================
WEB_URL=http://localhost:4200
WEB_PORT=4200