-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplaintext-build.cfg.template
More file actions
34 lines (29 loc) · 1.91 KB
/
plaintext-build.cfg.template
File metadata and controls
34 lines (29 loc) · 1.91 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
# ═══════════════════════════════════════════════════════════════
# plaintext-build.cfg - Project Build Configuration
#
# Used by plaintext-scripts build system.
# Place this file in the project root (add to .gitignore).
#
# Override any value via individual environment variable.
# Pass entire config via PLAINTEXT_BUILD_CONFIG env variable.
# Priority: individual ENV > PLAINTEXT_BUILD_CONFIG env > this file
# ═══════════════════════════════════════════════════════════════
# ── Project (required) ───────────────────────────────────────
IMAGE_NAME=myproject
WEBAPP_MODULE=myproject-webapp
TUI_TITLE=MY PROJECT BUILD SYSTEM
# ── Deployment ───────────────────────────────────────────────
DEPLOY_PATH=/volume1/docker/myproject
DEPLOY_USER=mad
#NAS_HOST=192.168.1.224 # auto-detected by hostname if unset
#REGISTRY_PORT=6666
#NAS_REMOTE_TEMP=/volume1/docker/temp
#COMPOSE_FILE=docker-compose.yaml
# ── Database ─────────────────────────────────────────────────
DB_NAME=myproject
DB_CONTAINER_PREFIX=myproject
# ── Ports ────────────────────────────────────────────────────
DEV_PORT=1121
#PROD_PORT=1122
# ── Maven ────────────────────────────────────────────────────
MVN_RELEASE_DEPLOY=true