balda 0.0.61 → 0.0.63
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.
- package/.sisyphus/boulder.json +6 -0
- package/docker-compose.worktree.yml +140 -0
- package/lib/cli.js.map +1 -1
- package/lib/index.cjs +36 -36
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.cts +122 -36
- package/lib/index.d.ts +122 -36
- package/lib/index.js +36 -36
- package/lib/index.js.map +1 -1
- package/package.json +11 -1
|
@@ -0,0 +1,140 @@
|
|
|
1
|
+
services:
|
|
2
|
+
node:
|
|
3
|
+
build:
|
|
4
|
+
context: .
|
|
5
|
+
dockerfile: docker/node.Dockerfile
|
|
6
|
+
tty: true
|
|
7
|
+
volumes:
|
|
8
|
+
- .:/app
|
|
9
|
+
- /app/node_modules
|
|
10
|
+
working_dir: /app
|
|
11
|
+
env_file:
|
|
12
|
+
- .env.test
|
|
13
|
+
command: ["tail", "-f", "/dev/null"]
|
|
14
|
+
networks:
|
|
15
|
+
- local-network
|
|
16
|
+
|
|
17
|
+
bun:
|
|
18
|
+
build:
|
|
19
|
+
context: .
|
|
20
|
+
dockerfile: docker/bun.Dockerfile
|
|
21
|
+
tty: true
|
|
22
|
+
volumes:
|
|
23
|
+
- .:/app
|
|
24
|
+
- /app/node_modules
|
|
25
|
+
working_dir: /app
|
|
26
|
+
env_file:
|
|
27
|
+
- .env.test
|
|
28
|
+
command: ["tail", "-f", "/dev/null"]
|
|
29
|
+
networks:
|
|
30
|
+
- local-network
|
|
31
|
+
|
|
32
|
+
deno:
|
|
33
|
+
build:
|
|
34
|
+
context: .
|
|
35
|
+
dockerfile: docker/deno.Dockerfile
|
|
36
|
+
tty: true
|
|
37
|
+
env_file:
|
|
38
|
+
- .env.test
|
|
39
|
+
volumes:
|
|
40
|
+
- .:/app
|
|
41
|
+
- /app/node_modules
|
|
42
|
+
working_dir: /app
|
|
43
|
+
command: ["tail", "-f", "/dev/null"]
|
|
44
|
+
networks:
|
|
45
|
+
- local-network
|
|
46
|
+
|
|
47
|
+
redis:
|
|
48
|
+
image: redis:7.0
|
|
49
|
+
restart: unless-stopped
|
|
50
|
+
tty: true
|
|
51
|
+
command: redis-server --requirepass root
|
|
52
|
+
networks:
|
|
53
|
+
local-network:
|
|
54
|
+
aliases:
|
|
55
|
+
- balda-redis
|
|
56
|
+
|
|
57
|
+
sqs:
|
|
58
|
+
image: softwaremill/elasticmq
|
|
59
|
+
environment:
|
|
60
|
+
- JAVA_OPTS=-Dconfig.file=/opt/elasticmq.conf
|
|
61
|
+
volumes:
|
|
62
|
+
- ./elasticmq.conf:/opt/elasticmq.conf
|
|
63
|
+
networks:
|
|
64
|
+
local-network:
|
|
65
|
+
aliases:
|
|
66
|
+
- balda-sqs
|
|
67
|
+
|
|
68
|
+
postgres:
|
|
69
|
+
image: postgres:17.4
|
|
70
|
+
restart: unless-stopped
|
|
71
|
+
tty: true
|
|
72
|
+
environment:
|
|
73
|
+
POSTGRES_DB: database
|
|
74
|
+
POSTGRES_USER: root
|
|
75
|
+
POSTGRES_PASSWORD: root
|
|
76
|
+
networks:
|
|
77
|
+
local-network:
|
|
78
|
+
aliases:
|
|
79
|
+
- balda-postgres
|
|
80
|
+
|
|
81
|
+
localstack:
|
|
82
|
+
image: localstack/localstack:latest
|
|
83
|
+
environment:
|
|
84
|
+
- SERVICES=s3,cloudfront,iam,lambda
|
|
85
|
+
- DEBUG=1
|
|
86
|
+
env_file:
|
|
87
|
+
- .env.test
|
|
88
|
+
volumes:
|
|
89
|
+
- "./.localstack:/var/lib/localstack"
|
|
90
|
+
- "/var/run/docker.sock:/var/run/docker.sock"
|
|
91
|
+
networks:
|
|
92
|
+
- local-network
|
|
93
|
+
|
|
94
|
+
mqtt:
|
|
95
|
+
image: eclipse-mosquitto:latest
|
|
96
|
+
volumes:
|
|
97
|
+
- ./mosquitto.conf:/mosquitto/config/mosquitto.conf
|
|
98
|
+
networks:
|
|
99
|
+
local-network:
|
|
100
|
+
aliases:
|
|
101
|
+
- balda-mqtt
|
|
102
|
+
|
|
103
|
+
azurite:
|
|
104
|
+
image: mcr.microsoft.com/azure-storage/azurite:latest
|
|
105
|
+
restart: unless-stopped
|
|
106
|
+
volumes:
|
|
107
|
+
- azurite_data:/data
|
|
108
|
+
command: >
|
|
109
|
+
azurite-blob
|
|
110
|
+
--blobHost 0.0.0.0
|
|
111
|
+
--blobPort 10000
|
|
112
|
+
--location /data
|
|
113
|
+
--loose
|
|
114
|
+
environment:
|
|
115
|
+
- AZURITE_ACCOUNT_KEY=Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==
|
|
116
|
+
healthcheck:
|
|
117
|
+
test: ["CMD", "curl", "-f", "http://localhost:10000/devstoreaccount1/"]
|
|
118
|
+
interval: 30s
|
|
119
|
+
timeout: 10s
|
|
120
|
+
retries: 3
|
|
121
|
+
networks:
|
|
122
|
+
local-network:
|
|
123
|
+
aliases:
|
|
124
|
+
- balda-azurite-blob
|
|
125
|
+
|
|
126
|
+
mailcatcher:
|
|
127
|
+
image: schickling/mailcatcher
|
|
128
|
+
restart: unless-stopped
|
|
129
|
+
networks:
|
|
130
|
+
local-network:
|
|
131
|
+
aliases:
|
|
132
|
+
- balda-mailcatcher
|
|
133
|
+
|
|
134
|
+
volumes:
|
|
135
|
+
azurite_data:
|
|
136
|
+
driver: local
|
|
137
|
+
|
|
138
|
+
networks:
|
|
139
|
+
local-network:
|
|
140
|
+
driver: bridge
|