-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
54 lines (43 loc) · 1.65 KB
/
Copy path.env.example
File metadata and controls
54 lines (43 loc) · 1.65 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
DB_NAME=moim
DB_USER=postgres
DB_PASSWORD=postgres
DATABASE_URL=postgresql://postgres:postgres@localhost:5432/moim
MIGRATION_DATABASE_URL=postgresql://postgres:postgres@localhost:5433/moim_migration
# Federation
FEDERATION_DOMAIN=localhost:3000
FEDERATION_HANDLE_DOMAIN=localhost:3000
FEDERATION_PROTOCOL=http
# Generate a new key for production using `pnpm generate-key` and paste it here
INSTANCE_ACTOR_KEY=''
# AWS Credentials
AWS_ACCESS_KEY_ID=''
AWS_SECRET_ACCESS_KEY=''
S3_BUCKET=''
S3_ENDPOINT=''
# Auth
INSTANCE_HANDLE=instance
OTP_TTL_SECONDS=600
OTP_POLL_INTERVAL_MS=3000
OTP_POLL_TIMEOUT_MS=60000
# Timezone (IANA, e.g. Asia/Seoul, America/New_York)
DEFAULT_TIMEZONE=UTC
# Map link providers (google, naver, kakao, ...)
MAP_LINK_PROVIDERS=google,naver
# User-facing map tile provider — osm (default, OSS-safe) | kakao | google
# `osm` requires no key; Leaflet + OpenStreetMap tiles.
# `kakao` requires KAKAO_MAP_APP_KEY (JavaScript key, issued at https://developers.kakao.com/).
# The key's allowed domains (Web platform → Site Domain) must include every origin
# the app runs on: e.g. http://localhost:3000 for dev, https://your.domain for prod.
# `google` is a future stub — selecting it throws until an adapter lands.
MAP_PROVIDER=osm
KAKAO_MAP_APP_KEY=''
# REST API key (server-side only) — enables POI name autocomplete on map click.
# Issue from the same Kakao Developers app under 앱 키 → REST API 키.
KAKAO_MAP_REST_KEY=''
GOOGLE_MAPS_API_KEY=''
# PostHog (optional)
POSTHOG_KEY=phc_xxx
POSTHOG_HOST=https://us.i.posthog.com
# Admin (comma-separated handle@domain, e.g. alice@mastodon.social)
INSTANCE_ADMIN_HANDLES=''
ENABLE_PLACE_AUDIT_LOG=1