-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
44 lines (37 loc) · 988 Bytes
/
.env.example
File metadata and controls
44 lines (37 loc) · 988 Bytes
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
# ==========================
# Database
# ==========================
DB_NAME=products
DB_USER=tpuser
DB_PASSWORD=Tp@2026
DB_HOST=postgres
DB_PORT=5432
# ==========================
# Quarkus / Hibernate
# ==========================
HIBERNATE_GENERATION=update
LOG_LEVEL=INFO
LOG_SQL=false
# ==========================
# JIB Docker image
# ==========================
REGISTRY=docker.io
IMAGE_GROUP=brunoe
IMAGE_NAME=product-catalog
IMAGE=${REGISTRY}/${IMAGE_GROUP}/${IMAGE_NAME}
TAG=1.0.0-jib
# ==========================
# JVM options
# ==========================
JAVA_OPTS=-Xms256m -Xmx512m -XX:+UseContainerSupport -XX:MaxRAMPercentage=75.0
# ==========================
# Ports
# ==========================
HOST_HTTP_PORT=8080
HOST_POSTGRES_PORT=15432
# ===========================================
# Traefik dev host
# ===========================================
TRAEFIK_HOST=product.local
TRAEFIK_AUTH=admin:$$apr1$$H6uskkkW$$IgXLP6ewTrSuBkTrqE8wj/
APP_DOMAIN=products.localhost