@helyx/cli 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,27 @@
1
+ services:
2
+ bot:
3
+ build: .
4
+ restart: unless-stopped
5
+ env_file:
6
+ - .env
7
+ depends_on:
8
+ database:
9
+ condition: service_healthy
10
+
11
+ database:
12
+ image: postgres:17-alpine
13
+ restart: unless-stopped
14
+ environment:
15
+ POSTGRES_DB: ${POSTGRES_DB}
16
+ POSTGRES_USER: ${POSTGRES_USER}
17
+ POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
18
+ healthcheck:
19
+ test: ["CMD-SHELL", "pg_isready -U ${POSTGRES_USER} -d ${POSTGRES_DB}"]
20
+ interval: 10s
21
+ timeout: 5s
22
+ retries: 5
23
+ volumes:
24
+ - helyx-database:/var/lib/postgresql/data
25
+
26
+ volumes:
27
+ helyx-database:
@@ -0,0 +1,3 @@
1
+ audit=true
2
+ fund=false
3
+ save-exact=true