-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
65 lines (56 loc) · 1.51 KB
/
.env.example
File metadata and controls
65 lines (56 loc) · 1.51 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
# =====================
# Database(Rails)
# =====================
DB_HOST=db
DB_PORT=5432
DB_NAME=shelfie_development
DB_USER=postgres
DB_PASSWORD=
# =====================
# Database(PostgreSQL コンテナ初期化用)
# =====================
POSTGRES_USER=postgres
POSTGRES_PASSWORD=
POSTGRES_DB=shelfie_development
# =====================
# Clerk
# =====================
CLERK_SECRET_KEY=
# =====================
# JWT
# =====================
JWT_SECRET_KEY=
# =====================
# 開発用テスト(development only)
# =====================
DEV_JWT_SECRET=dev-secret-change-me
DEV_CLERK_USER_ID=user_xxx
DEV_EMAIL=test@example.com
# =====================
# LocalStack(S3 ローカルエミュレーション)
# =====================
AWS_ACCESS_KEY_ID=test
AWS_SECRET_ACCESS_KEY=test
AWS_REGION=ap-northeast-1
AWS_ENDPOINT=http://localstack:4566
S3_BUCKET_NAME=shelfie-local
# =====================
# CloudFront(画像配信)
# =====================
CLOUDFRONT_HOST=
# =====================
# 楽天ブックスAPI
# =====================
RAKUTEN_APP_ID=
RAKUTEN_ACCESS_KEY=
RAKUTEN_ORIGIN=
# =====================
# CORS
# =====================
CORS_ALLOWED_ORIGINS=http://localhost:3000,http://localhost:8080
# =====================
# Cookie
# =====================
# 本番でフロントとバックエンドが親ドメインを共有する場合に設定する(例: .shelfie.com)
# 未指定時はホストオンリー Cookie として発行される(ローカル開発はこれで OK)
COOKIE_DOMAIN=