-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
32 lines (27 loc) · 911 Bytes
/
.env.example
File metadata and controls
32 lines (27 loc) · 911 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
# AutoAppDev Controller
# Copy to .env and fill in local values (do NOT commit .env)
# Required (convention)
# Used for signing/auth in future; set a long random value for non-dev.
SECRET_KEY=dev_change_me
# HTTP
AUTOAPPDEV_HOST=127.0.0.1
AUTOAPPDEV_PORT=8788
# Deployment-friendly alias (keep in sync with AUTOAPPDEV_PORT)
PORT=8788
# Database (PostgreSQL)
# Preferred: set DATABASE_URL directly.
DATABASE_URL=postgresql://USER:PASSWORD@localhost:5432/autoappdev_db
#
# Alternative convention: set PG* vars and derive DATABASE_URL in your shell/tooling.
# (Backend currently reads DATABASE_URL.)
# PGHOST=localhost
# PGPORT=5432
# PGUSER=autoappdev
# PGPASSWORD=change_me
# PGDATABASE=autoappdev_db
# LLM / AI (optional; used by future integrations)
AI_API_BASE_URL=
AI_API_KEY=
# Default pipeline runner settings
AUTOAPPDEV_PIPELINE_CWD=
AUTOAPPDEV_PIPELINE_SCRIPT=scripts/auto-autoappdev-development.sh