You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
525 B
15 lines
525 B
# このファイルを.envにコピーして、実際の値を設定してください
|
|
|
|
# ================================
|
|
# JWT 秘密鍵
|
|
# この設定はアプリケーションで使用します
|
|
# ================================
|
|
JWT_SECRET="your-JWT-Key"
|
|
|
|
# ================================
|
|
# ローカル開発用 PostgreSQL 接続設定
|
|
# この設定はローカル環境で使用します
|
|
# ================================
|
|
LOCAL_DB_NAME="local_db"
|
|
LOCAL_DB_USER="local_user"
|
|
LOCAL_DB_PASSWORD="your_local_password" |