generated from t3-oss/create-t3-turbo
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.env.example
More file actions
60 lines (50 loc) · 1.34 KB
/
.env.example
File metadata and controls
60 lines (50 loc) · 1.34 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
# Node environment, either "development" or "production"
NODE_ENV="development"
# Database
DATABASE_URL="postgres://postgres:postgres@localhost:5432/taiyo"
DATABASE_USERNAME="postgres"
DATABASE_PASSWORD="postgres"
DATABASE_NAME="taiyo"
DATABASE_PORT="5432"
# Authentication
BETTER_AUTH_URL="http://localhost:3000"
BETTER_AUTH_SECRET="" # run `openssl rand -base64 32`
DISCORD_CLIENT_ID=""
DISCORD_CLIENT_SECRET=""
GOOGLE_CLIENT_ID=""
GOOGLE_CLIENT_SECRET=""
TURNSTILE_SECRET_KEY=""
# CDN
NEXT_PUBLIC_CDN_URL="http://localhost:4000"
# S3
S3_URL=""
S3_ACCESS_KEY_ID=""
S3_SECRET_ACCESS_KEY=""
S3_CDN_BUCKET_NAME="taiyo-development"
S3_UPLOADS_BUCKET_NAME="taiyo-uploads-development"
# Meilisearch
MEILISEARCH_MASTER_KEY=""
MEILISEARCH_ADMIN_KEY=""
MEILISEARCH_PORT="7700"
NEXT_PUBLIC_MEILISEARCH_URL="http://localhost:7700"
NEXT_PUBLIC_MEILISEARCH_PUBLIC_KEY=""
# Dragonfly
DRAGONFLY_PORT="6379"
DRAGONFLY_URL="redis://:@localhost:6379/0"
# ClickHouse
CLICKHOUSE_URL="http://clickhouse:clickhouse@localhost:8123"
CLICKHOUSE_USERNAME="clickhouse"
CLICKHOUSE_PASSWORD="clickhouse"
CLICKHOUSE_HTTP_PORT="8123"
CLICKHOUSE_TCP_PORT="9000"
# Umami
NEXT_PUBLIC_UMAMI_URL=""
NEXT_PUBLIC_UMAMI_WEBSITE_ID=""
UMAMI_USER_ID=""
UMAMI_SECRET=""
# Grafana
GRAFANA_USERNAME="admin"
GRAFANA_PASSWORD="admin"
GRAFANA_LOKI_URL="http://localhost:3100"
# Resend
RESEND_API_KEY=""