feat: Initial commit

This commit is contained in:
2025-03-24 12:08:36 -04:00
parent ba20b7a762
commit 562c208ec7
3 changed files with 44 additions and 0 deletions

View File

@@ -1,2 +1,9 @@
# purchase-orders # purchase-orders
The HHE purchase orders application.
## Usage
1. Download the compose file or use your container orchestration tool.
2. Copy the `example.env` values and set appropriately.
3. Deploy the application.

33
compose.yaml Normal file
View File

@@ -0,0 +1,33 @@
services:
purchase_orders:
image: git.housh.dev/hhe/vapor-po:prod
container_name: purchase_orders
restart: unless-stopped
environment:
LOG_LEVEL: ${LOG_LEVEL:-debug}
SQLITE_FILENAME: ${SQLITE_FILENAME:-/data/db.sqlite}
volumes:
- purchase_order_data:/data
networks:
- proxy
ports:
- 8082:8080
healthcheck:
test: curl --fail -s http://0.0.0.0:8080/health || exit 1
interval: 1m
timeout: 10s
retries: 3
command: ["serve", "--env", "production", "--hostname", "0.0.0.0", "--port", "8080"]
networks:
proxy:
external: true
volumes:
purchase_order_data:
driver_opts:
type: "nfs"
o: "addr=${NFS_ADDR},nolock,soft,rw"
device: "${NFS_MNT}"
labels:
dev.housh.description: "Purchase orders database volume."

4
example.env Normal file
View File

@@ -0,0 +1,4 @@
LOG_LEVEL=debug # info | debug | warning | trace | error
SQLITE_FILENAME=/data/db.sqlite
NFS_ADDR=nas.local
NFS_MNT=":/var/nfs/shared/<mnt>"