-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
28 lines (28 loc) · 1.22 KB
/
Copy path.env.example
File metadata and controls
28 lines (28 loc) · 1.22 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
ANYCODE_ACCESS_KEY=change-me
# Optional Arch Linux mirror URL template used before updating packages on container startup.
PACMAN_MIRROR=
# Space-separated Arch Linux package names installed as root before startup.
ANYCODE_EXTRA_PACKAGES=
# Trusted shell commands run as root on every container startup before AnyCode drops privileges.
ANYCODE_INIT_SCRIPT=
ANYCODE_HTTP_PORT=8080
ANYCODE_DATA_DIR=/home/anycode/.anycode
CLOUDFLARED_BIN=cloudflared
ANYCODE_HOST_DATA_DIR=./data
ANYCODE_WORKSPACES_DIR=./workspaces
# Preferred database switch. Leave blank to use TURSO_DATABASE_URL.
DATABASE_URL=
# Local Turso Database. The new filename avoids reusing an existing SQLite database.
TURSO_DATABASE_URL=/home/anycode/.anycode/anycode.turso.db
TURSO_AUTH_TOKEN=
TURSO_GO_CACHE_DIR=/home/anycode/.anycode/turso-cache
# Turso Cloud example:
# TURSO_DATABASE_URL=libsql://your-database-your-organization.turso.io
# TURSO_AUTH_TOKEN=replace-with-turso-database-token
# PostgreSQL Compose profile. Change the password before enabling it.
# COMPOSE_PROFILES=postgres
# DATABASE_URL=postgres://anycode:change-me@postgres:5432/anycode?sslmode=disable
POSTGRES_DB=anycode
POSTGRES_USER=anycode
POSTGRES_PASSWORD=change-me
POSTGRES_HOST_DATA_DIR=./postgres-data