-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
21 lines (19 loc) · 807 Bytes
/
.env.example
File metadata and controls
21 lines (19 loc) · 807 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Use "host.docker.internal" when running the app with docker compose and DB on your machine.
# Use "localhost" when running the Spring Boot app directly on your machine.
DB_URL=jdbc:mariadb://host.docker.internal:3306/mactadb?serverTimezone=Asia/Seoul&characterEncoding=UTF-8
DB_USERNAME=root
DB_PASSWORD=
JWT_SECRET=change-me
AWS_S3_REGION=ap-northeast-2
S3_BUCKET_NAME=your-private-bucket-name
# Leave these empty when using IAM role/default AWS credential provider.
AWS_ACCESS_KEY=
AWS_SECRET_KEY=
AWS_S3_BASE_DIRECTORY=auction-images
AWS_S3_PRESIGNED_URL_EXPIRATION_MINUTES=10
AWS_S3_MAX_UPLOAD_SIZE=10485760
# Use "redis" when running the app with docker compose.
# Use "localhost" when running the Spring Boot app directly on your machine.
REDIS_HOST=redis
REDIS_PORT=6379
REDIS_PASSWORD=change-me