-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.example
More file actions
83 lines (61 loc) · 1.74 KB
/
.env.example
File metadata and controls
83 lines (61 loc) · 1.74 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# change the api key and credentials before putting it online
# API Authentication
API_KEY=dev-key-123
# MinIO
MINIO_ROOT_USER=minioadmin
MINIO_ROOT_PASSWORD=minioadmin
MINIO_BUCKET=incoming
# RabbitMQ
RABBITMQ_DEFAULT_USER=admin
RABBITMQ_DEFAULT_PASS=admin123
RABBITMQ_VHOST=/
RABBITMQ_EXCHANGE=file-events
RABBITMQ_QUEUE=file-processing
RABBITMQ_ROUTING_KEY=file.put
# n8n
N8N_BASIC_AUTH_ACTIVE=true
N8N_BASIC_AUTH_USER=admin
N8N_BASIC_AUTH_PASSWORD=admin123
N8N_ENCRYPTION_KEY=supersecretkey123
N8N_PORT=5678
N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS=false
N8N_RUNNERS_ENABLED=true
# Default n8n bootstrap user
N8N_BOOTSTRAP_EMAIL=foo@example.com
N8N_BOOTSTRAP_FIRSTNAME=bar
N8N_BOOTSTRAP_LASTNAME=foo
N8N_BOOTSTRAP_PASSWORD=A1234567
N8N_BOOTSTRAP_ROLE=global:owner
# Neo4j credentials
NEO4J_AUTH=neo4j/test12345
DB_SQLITE_POOL_SIZE=2
SERVICE_NEO4J_URI=bolt://context-machine-neo4j:7687
SERVICE_NEO4J_AUTH=neo4j/test12345
# WebSocket server configuration
WS_HOST=0.0.0.0
WS_PORT=3010
# ---------------------------------------------------------------------------
# GITEA CONFIGURATION
# ---------------------------------------------------------------------------
GITEA_ADMIN_USER=admin
GITEA_ADMIN_PASSWORD=admin123
GITEA_ADMIN_EMAIL=admin@example.com
GITEA_HTTP_PORT=3005
GITEA_SSH_PORT=3022
# Path for token file
GITEA_TOKEN_FILE=./infra/gitea/admin_token.txt
# Ollama
OLLAMA_MODEL=codellama:7b
# --- Database Configuration ---
POSTGRES_USER=postgres
POSTGRES_PASSWORD=postgres
POSTGRES_DB=basedb
POSTGRES_HOST=postgres
POSTGRES_PORT=5432
# --- Frontend Configuration ---
FRONTEND_PORT=5173
FRONTEND_API_URL=http://localhost:3006
FRONTEND_WS_URL=ws://localhost:3010
# Vite Configuration
VITE_API_BASE_URL=http://localhost:3006
VITE_WS_URL=ws://localhost:3010/ws