buncargo 1.0.29 → 3.2.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.
Files changed (246) hide show
  1. package/dist/bin.d.ts +1 -12
  2. package/dist/bin.js +261 -253
  3. package/dist/cli/bin.d.ts +13 -0
  4. package/dist/cli/bin.js +317 -0
  5. package/dist/cli/commands/help.d.ts +1 -0
  6. package/dist/cli/commands/runtime.d.ts +5 -0
  7. package/dist/cli/commands/version.d.ts +1 -0
  8. package/dist/cli/index.d.ts +1 -0
  9. package/dist/cli/index.js +14 -0
  10. package/dist/cli/run-cli.d.ts +30 -0
  11. package/dist/cli.d.ts +1 -22
  12. package/dist/cli.js +5 -13
  13. package/dist/config/config.d.ts +1 -0
  14. package/dist/config/define-config.d.ts +13 -0
  15. package/dist/config/index.d.ts +3 -0
  16. package/dist/config/index.js +15 -0
  17. package/dist/config/merge-configs.d.ts +3 -0
  18. package/dist/config/validate-config.d.ts +3 -0
  19. package/dist/config.d.ts +1 -72
  20. package/dist/config.js +12 -12
  21. package/dist/core/docker.d.ts +1 -83
  22. package/dist/core/docker.js +35 -32
  23. package/dist/core/index.d.ts +1 -1
  24. package/dist/core/index.js +123 -118
  25. package/dist/core/network.js +2 -2
  26. package/dist/core/ports.js +1 -1
  27. package/dist/core/process.js +1 -1
  28. package/dist/core/quick-tunnel/cloudflared-process.d.ts +10 -0
  29. package/dist/core/quick-tunnel/constants.d.ts +9 -0
  30. package/dist/core/quick-tunnel/index.d.ts +17 -0
  31. package/dist/core/quick-tunnel/install.d.ts +1 -0
  32. package/dist/core/tunnel.d.ts +34 -0
  33. package/dist/core/utils.js +2 -2
  34. package/dist/core/watchdog-runner.js +45 -42
  35. package/dist/core/watchdog.d.ts +1 -0
  36. package/dist/core/watchdog.js +4 -2
  37. package/dist/docker/index.d.ts +1 -0
  38. package/dist/docker/index.js +38 -0
  39. package/dist/docker/runtime.d.ts +87 -0
  40. package/dist/docker/runtime.js +37 -0
  41. package/dist/docker-compose/compose.d.ts +1 -0
  42. package/dist/docker-compose/generated-file.d.ts +7 -0
  43. package/dist/docker-compose/index.d.ts +3 -0
  44. package/dist/docker-compose/index.js +15 -0
  45. package/dist/docker-compose/model.d.ts +6 -0
  46. package/dist/docker-compose/services/clickhouse.d.ts +16 -0
  47. package/dist/docker-compose/services/define-docker-service.d.ts +41 -0
  48. package/dist/docker-compose/services/index.d.ts +23 -0
  49. package/dist/docker-compose/services/index.js +17 -0
  50. package/dist/docker-compose/services/postgres.d.ts +12 -0
  51. package/dist/docker-compose/services/redis.d.ts +12 -0
  52. package/dist/docker-compose/services/shared.d.ts +7 -0
  53. package/dist/docker-compose/yaml.d.ts +2 -0
  54. package/dist/environment/create-dev-environment.d.ts +23 -0
  55. package/dist/environment/index.d.ts +1 -0
  56. package/dist/environment/index.js +15 -0
  57. package/dist/environment/logging.d.ts +17 -0
  58. package/dist/environment/only-apps.d.ts +10 -0
  59. package/dist/environment/seeding.d.ts +9 -0
  60. package/dist/environment.d.ts +1 -23
  61. package/dist/environment.js +12 -14
  62. package/dist/index-045jksh5.js +147 -0
  63. package/dist/index-08wa79cs.js +125 -117
  64. package/dist/index-0kxnae3z.js +335 -0
  65. package/dist/index-1mdrf7nz.js +51 -43
  66. package/dist/index-1yvbwj4k.js +262 -242
  67. package/dist/index-23ev345g.js +475 -0
  68. package/dist/index-2ckr49sf.js +228 -0
  69. package/dist/index-2f47khe5.js +376 -369
  70. package/dist/index-2fr3g85b.js +220 -183
  71. package/dist/index-38xnzpa6.js +450 -0
  72. package/dist/index-3eyrdxw9.js +577 -0
  73. package/dist/index-3h3dhtf2.js +51 -43
  74. package/dist/index-42x95209.js +51 -43
  75. package/dist/index-4gp0az1g.js +145 -0
  76. package/dist/index-4xrxh8yv.js +72 -0
  77. package/dist/index-5aq985p4.js +250 -0
  78. package/dist/index-5gmws6ah.js +181 -0
  79. package/dist/index-5hka0tff.js +78 -76
  80. package/dist/index-5rfqps4b.js +3 -0
  81. package/dist/index-5t9jxqm0.js +428 -0
  82. package/dist/index-6c1w1xk5.js +101 -0
  83. package/dist/index-6cmex7m5.js +72 -0
  84. package/dist/index-6d6x175r.js +572 -0
  85. package/dist/index-6fm7mvwj.js +118 -97
  86. package/dist/index-6srpc523.js +127 -128
  87. package/dist/index-731rzzfp.js +157 -142
  88. package/dist/index-75y4cg2z.js +51 -43
  89. package/dist/index-7ja4ywyj.js +126 -127
  90. package/dist/index-7v19es2e.js +666 -0
  91. package/dist/index-8bw1cmz4.js +531 -0
  92. package/dist/index-8hbbj1mp.js +120 -121
  93. package/dist/index-8xj2p5n5.js +118 -97
  94. package/dist/index-9wyhzw0h.js +574 -0
  95. package/dist/index-ag90ry8t.js +576 -0
  96. package/dist/index-bj79tw5w.js +0 -0
  97. package/dist/index-bnk6nr0g.js +73 -0
  98. package/dist/index-brbbzyks.js +72 -0
  99. package/dist/index-byeqyjrz.js +72 -0
  100. package/dist/index-c0dr6mcv.js +123 -0
  101. package/dist/index-cty0bcry.js +235 -218
  102. package/dist/index-d8tyv5se.js +228 -0
  103. package/dist/index-d9efy0n4.js +176 -150
  104. package/dist/index-enj4zdma.js +574 -0
  105. package/dist/index-etfmqjjf.js +427 -0
  106. package/dist/index-fb29934k.js +172 -0
  107. package/dist/index-g50jw1yf.js +72 -0
  108. package/dist/index-g6eb5wdw.js +118 -117
  109. package/dist/index-ggq3yryx.js +99 -95
  110. package/dist/index-h70tce00.js +177 -0
  111. package/dist/index-hkxtfqtc.js +333 -0
  112. package/dist/index-k370bech.js +72 -0
  113. package/dist/index-kf3dhser.js +146 -143
  114. package/dist/index-ma6tgdb2.js +500 -0
  115. package/dist/index-mam0bcyz.js +123 -0
  116. package/dist/index-mm412dkp.js +274 -0
  117. package/dist/index-n8v18aeb.js +0 -0
  118. package/dist/index-ndnmnsej.js +378 -371
  119. package/dist/index-p8wty0e2.js +389 -379
  120. package/dist/index-qa8akv6y.js +666 -0
  121. package/dist/index-qfphr2fd.js +78 -76
  122. package/dist/index-qqmms8rs.js +51 -43
  123. package/dist/index-qw4093g2.js +51 -43
  124. package/dist/index-qzwpzjbx.js +121 -122
  125. package/dist/index-segbnm0h.js +146 -143
  126. package/dist/index-t0fj6gg1.js +112 -0
  127. package/dist/index-thdkwnv7.js +122 -0
  128. package/dist/index-tjbx2r2t.js +270 -0
  129. package/dist/index-tjqw9vtj.js +62 -54
  130. package/dist/index-vbpb89jy.js +248 -0
  131. package/dist/index-vg55rq0y.js +250 -0
  132. package/dist/index-vhs88xhe.js +99 -95
  133. package/dist/index-vs81yaks.js +244 -0
  134. package/dist/index-w8zxnjka.js +249 -0
  135. package/dist/index-wk2na3t9.js +385 -375
  136. package/dist/index-wz9x8g7z.js +383 -373
  137. package/dist/index-x249gyde.js +388 -378
  138. package/dist/index-x54nbgs7.js +355 -0
  139. package/dist/index-xkvd0nsd.js +187 -0
  140. package/dist/index-yedqxm1z.js +80 -0
  141. package/dist/index-yz4jfz7z.js +338 -0
  142. package/dist/index-zfjzzjkf.js +240 -199
  143. package/dist/index.d.ts +12 -8
  144. package/dist/index.js +56 -34
  145. package/dist/lint.d.ts +1 -46
  146. package/dist/lint.js +3 -7
  147. package/dist/loader/cache.d.ts +4 -0
  148. package/dist/loader/find-config-file.d.ts +2 -0
  149. package/dist/loader/index.d.ts +5 -0
  150. package/dist/loader/index.js +24 -0
  151. package/dist/loader/load-dev-env.d.ts +5 -0
  152. package/dist/loader/loader.d.ts +1 -0
  153. package/dist/loader.d.ts +1 -45
  154. package/dist/loader.js +22 -20
  155. package/dist/prisma/index.d.ts +1 -0
  156. package/dist/prisma/prisma.d.ts +29 -0
  157. package/dist/prisma.d.ts +1 -29
  158. package/dist/prisma.js +6 -10
  159. package/dist/src/bin.js +309 -0
  160. package/dist/src/cli.js +5 -0
  161. package/dist/src/config.js +15 -0
  162. package/dist/src/core/docker.js +38 -0
  163. package/dist/src/core/index.js +130 -0
  164. package/dist/src/core/network.js +9 -0
  165. package/dist/src/core/ports.js +23 -0
  166. package/dist/src/core/process.js +31 -0
  167. package/dist/src/core/utils.js +11 -0
  168. package/dist/src/core/watchdog-runner.js +69 -0
  169. package/dist/src/core/watchdog.js +28 -0
  170. package/dist/src/docker/runtime.js +37 -0
  171. package/dist/src/docker-compose/index.js +16 -0
  172. package/dist/src/docker-compose/services/index.js +17 -0
  173. package/dist/src/environment.js +12 -0
  174. package/dist/src/index.js +122 -0
  175. package/dist/src/lint.js +3 -0
  176. package/dist/src/loader.js +25 -0
  177. package/dist/src/prisma.js +6 -0
  178. package/dist/src/types.js +0 -0
  179. package/dist/typecheck/index.d.ts +1 -0
  180. package/dist/typecheck/index.js +7 -0
  181. package/dist/typecheck/typecheck.d.ts +46 -0
  182. package/dist/types/all-types.d.ts +544 -0
  183. package/dist/types/cli.d.ts +1 -0
  184. package/dist/types/config.d.ts +6 -0
  185. package/dist/types/docker.d.ts +15 -0
  186. package/dist/types/environment.d.ts +8 -0
  187. package/dist/types/hooks.d.ts +9 -0
  188. package/dist/types/index.d.ts +1 -0
  189. package/dist/types/index.js +0 -0
  190. package/dist/types/prisma.d.ts +1 -0
  191. package/dist/types.d.ts +1 -399
  192. package/package.json +55 -48
  193. package/readme.md +365 -109
  194. package/src/cli/bin.ts +77 -0
  195. package/src/cli/commands/help.ts +39 -0
  196. package/src/cli/commands/runtime.ts +72 -0
  197. package/src/cli/commands/version.ts +4 -0
  198. package/src/cli/index.ts +1 -0
  199. package/{cli.ts → src/cli/run-cli.ts} +114 -10
  200. package/src/config/define-config.ts +30 -0
  201. package/src/config/index.ts +3 -0
  202. package/src/config/merge-configs.ts +33 -0
  203. package/src/config/validate-config.ts +136 -0
  204. package/{core → src/core}/index.ts +2 -2
  205. package/{core → src/core}/ports.ts +5 -2
  206. package/{core → src/core}/process.ts +6 -2
  207. package/src/core/quick-tunnel/cloudflared-process.ts +83 -0
  208. package/src/core/quick-tunnel/constants.ts +31 -0
  209. package/src/core/quick-tunnel/index.ts +96 -0
  210. package/src/core/quick-tunnel/install.ts +160 -0
  211. package/src/core/tunnel.ts +165 -0
  212. package/{core → src/core}/utils.ts +1 -0
  213. package/{core → src/core}/watchdog.ts +5 -1
  214. package/src/docker/index.ts +1 -0
  215. package/{core/docker.ts → src/docker/runtime.ts} +11 -4
  216. package/src/docker-compose/generated-file.ts +45 -0
  217. package/src/docker-compose/index.ts +7 -0
  218. package/src/docker-compose/model.ts +197 -0
  219. package/src/docker-compose/services/clickhouse.ts +79 -0
  220. package/src/docker-compose/services/define-docker-service.ts +109 -0
  221. package/src/docker-compose/services/index.ts +67 -0
  222. package/src/docker-compose/services/postgres.ts +60 -0
  223. package/src/docker-compose/services/redis.ts +48 -0
  224. package/src/docker-compose/services/shared.ts +79 -0
  225. package/src/docker-compose/yaml.ts +88 -0
  226. package/{environment.ts → src/environment/create-dev-environment.ts} +214 -141
  227. package/src/environment/index.ts +1 -0
  228. package/src/environment/logging.ts +115 -0
  229. package/src/environment/only-apps.ts +34 -0
  230. package/src/environment/seeding.ts +57 -0
  231. package/{index.ts → src/index.ts} +52 -20
  232. package/src/loader/cache.ts +23 -0
  233. package/src/loader/find-config-file.ts +29 -0
  234. package/src/loader/index.ts +17 -0
  235. package/src/loader/load-dev-env.ts +38 -0
  236. package/src/prisma/index.ts +1 -0
  237. package/{prisma.ts → src/prisma/prisma.ts} +4 -2
  238. package/src/typecheck/index.ts +1 -0
  239. package/{types.ts → src/types/all-types.ts} +186 -8
  240. package/src/types/index.ts +1 -0
  241. package/bin.ts +0 -192
  242. package/config.ts +0 -194
  243. package/loader.ts +0 -126
  244. /package/{core → src/core}/network.ts +0 -0
  245. /package/{core → src/core}/watchdog-runner.ts +0 -0
  246. /package/{lint.ts → src/typecheck/typecheck.ts} +0 -0
@@ -0,0 +1,244 @@
1
+ import {
2
+ resolveExposeTargets,
3
+ startPublicTunnels,
4
+ stopPublicTunnels
5
+ } from "./index-yz4jfz7z.js";
6
+ import {
7
+ spawnWatchdog,
8
+ startHeartbeat,
9
+ stopHeartbeat
10
+ } from "./index-mam0bcyz.js";
11
+ import {
12
+ killProcessesOnAppPorts
13
+ } from "./index-mm412dkp.js";
14
+
15
+ // src/cli/run-cli.ts
16
+ import { spawn } from "node:child_process";
17
+ var ACCEPTED_FLAGS = [
18
+ "--help",
19
+ "--down",
20
+ "--reset",
21
+ "--migrate",
22
+ "--seed",
23
+ "--up-only",
24
+ "--expose"
25
+ ];
26
+ function printHelp() {
27
+ console.log(`
28
+ Usage: buncargo dev [options]
29
+
30
+ Options:
31
+ --help Show this help message
32
+ --down Stop all containers
33
+ --reset Stop containers and remove volumes (fresh start)
34
+ --migrate Run migrations and exit
35
+ --seed Run migrations and seeders, then exit
36
+ --up-only Start containers and run migrations, then exit (no dev servers)
37
+ --expose Expose configured targets via public quick tunnels
38
+
39
+ Examples:
40
+ bun dev Start dev environment with all services
41
+ bun dev --seed Run migrations and seed the database
42
+ bun dev --down Stop all containers
43
+ bun dev --reset Stop containers and remove all data
44
+ bun dev --expose Expose all targets with expose: true
45
+ bun dev --expose=api,web Expose specific targets
46
+ `);
47
+ }
48
+ function getUnknownFlags(args) {
49
+ return args.filter((arg) => arg.startsWith("--") && !ACCEPTED_FLAGS.includes(arg.includes("=") ? arg.split("=")[0] : arg));
50
+ }
51
+ async function runCli(env, options = {}) {
52
+ const {
53
+ args = process.argv.slice(2),
54
+ watchdog = true,
55
+ watchdogTimeout = 10,
56
+ devServersCommand
57
+ } = options;
58
+ const exposeRequested = hasFlag(args, "--expose");
59
+ const exposeValue = getFlagValue(args, "--expose");
60
+ let tunnels = [];
61
+ async function cleanupTunnels() {
62
+ env.clearPublicUrls();
63
+ if (tunnels.length === 0)
64
+ return;
65
+ await stopPublicTunnels(tunnels);
66
+ tunnels = [];
67
+ }
68
+ if (args.includes("--help")) {
69
+ printHelp();
70
+ process.exit(0);
71
+ }
72
+ const unknownFlags = getUnknownFlags(args);
73
+ if (unknownFlags.length > 0) {
74
+ console.error(`❌ Unknown flag${unknownFlags.length > 1 ? "s" : ""}: ${unknownFlags.join(", ")}`);
75
+ console.error("");
76
+ printHelp();
77
+ process.exit(1);
78
+ }
79
+ if (args.includes("--down")) {
80
+ env.logInfo();
81
+ await cleanupTunnels();
82
+ await env.stop();
83
+ process.exit(0);
84
+ }
85
+ if (args.includes("--reset")) {
86
+ env.logInfo();
87
+ await cleanupTunnels();
88
+ await env.stop({ removeVolumes: true });
89
+ process.exit(0);
90
+ }
91
+ const skipSeed = args.includes("--seed");
92
+ await env.start({
93
+ startServers: false,
94
+ wait: true,
95
+ skipSeed,
96
+ skipEnvironmentLog: exposeRequested
97
+ });
98
+ if (exposeRequested) {
99
+ const { targets, unknownNames, notEnabledNames } = resolveExposeTargets(env, exposeValue);
100
+ if (unknownNames.length > 0) {
101
+ console.error(`❌ Unknown expose target${unknownNames.length > 1 ? "s" : ""}: ${unknownNames.join(", ")}`);
102
+ await cleanupTunnels();
103
+ process.exit(1);
104
+ }
105
+ if (notEnabledNames.length > 0) {
106
+ console.error(`❌ Target${notEnabledNames.length > 1 ? "s" : ""} missing expose: true: ${notEnabledNames.join(", ")}`);
107
+ console.error(" Mark these in dev.config.ts with expose: true or remove them from --expose.");
108
+ await cleanupTunnels();
109
+ process.exit(1);
110
+ }
111
+ if (targets.length === 0) {
112
+ console.error("❌ No expose targets selected. Add expose: true to services/apps or pass names with --expose=<name>.");
113
+ await cleanupTunnels();
114
+ process.exit(1);
115
+ }
116
+ tunnels = await startPublicTunnels(targets);
117
+ env.setPublicUrls(Object.fromEntries(tunnels.map((tunnel) => [tunnel.name, tunnel.publicUrl])));
118
+ env.logInfo("Dev Environment", tunnels);
119
+ }
120
+ if (args.includes("--migrate")) {
121
+ console.log("");
122
+ console.log("✅ Migrations applied successfully");
123
+ await cleanupTunnels();
124
+ process.exit(0);
125
+ }
126
+ if (args.includes("--seed")) {
127
+ console.log("\uD83C\uDF31 Running seeders...");
128
+ const result = await env.exec("bun run run:seeder", {
129
+ throwOnError: false
130
+ });
131
+ if (result.exitCode !== 0) {
132
+ console.error("❌ Seeding failed");
133
+ if (result.stderr) {
134
+ console.error(result.stderr);
135
+ }
136
+ if (result.stdout) {
137
+ console.error(result.stdout);
138
+ }
139
+ await cleanupTunnels();
140
+ process.exit(1);
141
+ }
142
+ console.log("");
143
+ console.log("✅ Seeding complete");
144
+ await cleanupTunnels();
145
+ process.exit(0);
146
+ }
147
+ if (args.includes("--up-only")) {
148
+ console.log("");
149
+ console.log("✅ Containers started. Environment ready.");
150
+ console.log("");
151
+ await cleanupTunnels();
152
+ process.exit(0);
153
+ }
154
+ if (watchdog) {
155
+ await spawnWatchdog(env.projectName, env.root, {
156
+ timeoutMinutes: watchdogTimeout,
157
+ verbose: true,
158
+ composeFile: env.composeFile
159
+ });
160
+ startHeartbeat(env.projectName);
161
+ }
162
+ const command = devServersCommand ?? buildDevServersCommand(env.apps);
163
+ if (!command) {
164
+ console.log("✅ Containers ready. No apps configured.");
165
+ await new Promise(() => {});
166
+ await cleanupTunnels();
167
+ return;
168
+ }
169
+ await killProcessesOnAppPorts(env.apps, env.ports);
170
+ console.log("");
171
+ console.log("\uD83D\uDD27 Starting dev servers...");
172
+ console.log("");
173
+ await runCommand(command, env.root, env.buildEnvVars(), {
174
+ onSignal: async () => {
175
+ await cleanupTunnels();
176
+ stopHeartbeat();
177
+ }
178
+ });
179
+ stopHeartbeat();
180
+ await cleanupTunnels();
181
+ }
182
+ function buildDevServersCommand(apps) {
183
+ const appEntries = Object.entries(apps);
184
+ if (appEntries.length === 0)
185
+ return null;
186
+ const commands = [];
187
+ const names = [];
188
+ const colors = ["blue", "green", "yellow", "magenta", "cyan", "red"];
189
+ for (const [name, config] of appEntries) {
190
+ names.push(name);
191
+ const cwdPart = config.cwd ? `--cwd ${config.cwd}` : "";
192
+ commands.push(`"bun run ${cwdPart} ${config.devCommand}"`.replace(/\s+/g, " ").trim());
193
+ }
194
+ const namesArg = `-n ${names.join(",")}`;
195
+ const colorsArg = `-c ${colors.slice(0, names.length).join(",")}`;
196
+ const commandsArg = commands.join(" ");
197
+ return `bun concurrently ${namesArg} ${colorsArg} ${commandsArg}`;
198
+ }
199
+ function runCommand(command, cwd, envVars, options = {}) {
200
+ const { onSignal } = options;
201
+ return new Promise((resolve, reject) => {
202
+ const proc = spawn(command, [], {
203
+ cwd,
204
+ env: { ...process.env, ...envVars },
205
+ stdio: "inherit",
206
+ shell: true
207
+ });
208
+ proc.on("close", (code) => {
209
+ if (code === 0 || code === null) {
210
+ resolve();
211
+ } else {
212
+ reject(new Error(`Command exited with code ${code}`));
213
+ }
214
+ });
215
+ proc.on("error", reject);
216
+ const cleanup = () => {
217
+ if (onSignal) {
218
+ onSignal();
219
+ }
220
+ proc.kill("SIGTERM");
221
+ };
222
+ process.on("SIGINT", cleanup);
223
+ process.on("SIGTERM", cleanup);
224
+ });
225
+ }
226
+ function hasFlag(args, flag) {
227
+ return args.some((arg) => arg === flag || arg.startsWith(`${flag}=`));
228
+ }
229
+ function getFlagValue(args, flag) {
230
+ const prefixed = args.find((arg) => arg.startsWith(`${flag}=`));
231
+ if (prefixed) {
232
+ return prefixed.split("=")[1];
233
+ }
234
+ const index = args.indexOf(flag);
235
+ if (index !== -1 && index + 1 < args.length) {
236
+ const nextArg = args[index + 1];
237
+ if (nextArg !== undefined && !nextArg.startsWith("-")) {
238
+ return nextArg;
239
+ }
240
+ }
241
+ return;
242
+ }
243
+
244
+ export { runCli, hasFlag, getFlagValue };
@@ -0,0 +1,249 @@
1
+ // src/docker-compose/services/define-docker-service.ts
2
+ function defineDockerService(input) {
3
+ function createPresetDefinition(service) {
4
+ return {
5
+ kind: "preset",
6
+ preset: input.preset,
7
+ service,
8
+ };
9
+ }
10
+ function toServiceConfig(options = {}) {
11
+ const base = {
12
+ port: options.port ?? input.defaults.port,
13
+ healthCheck: options.healthCheck ?? input.defaults.healthCheck,
14
+ database: options.database,
15
+ user: options.user,
16
+ password: options.password,
17
+ serviceName: options.serviceName,
18
+ docker: createPresetDefinition(options.docker),
19
+ };
20
+ return input.enhanceServiceConfig
21
+ ? input.enhanceServiceConfig(base, options)
22
+ : base;
23
+ }
24
+ return {
25
+ preset: input.preset,
26
+ defaults: input.defaults,
27
+ build: input.build,
28
+ createPresetDefinition,
29
+ toServiceConfig,
30
+ };
31
+ }
32
+
33
+ // src/docker-compose/services/shared.ts
34
+ var DEFAULT_HEALTHCHECK_SETTINGS = {
35
+ interval: "250ms",
36
+ timeout: "5s",
37
+ retries: 20,
38
+ };
39
+ function getPortEnvName(portKey) {
40
+ return `${portKey.toUpperCase()}_PORT`;
41
+ }
42
+ function getDefaultPortBindings(serviceKey, config, preset) {
43
+ const envName = getPortEnvName(serviceKey);
44
+ const bindings = [];
45
+ const defaultInternalPort =
46
+ preset === "postgres"
47
+ ? 5432
48
+ : preset === "redis"
49
+ ? 6379
50
+ : preset === "clickhouse"
51
+ ? 8123
52
+ : config.port;
53
+ bindings.push(`\${${envName}:-${config.port}}:${defaultInternalPort}`);
54
+ if (config.secondaryPort !== undefined) {
55
+ const secondaryEnv = getPortEnvName(`${serviceKey}Secondary`);
56
+ const secondaryInternal =
57
+ preset === "clickhouse" ? 9000 : config.secondaryPort;
58
+ bindings.push(
59
+ `\${${secondaryEnv}:-${config.secondaryPort}}:${secondaryInternal}`,
60
+ );
61
+ }
62
+ return bindings;
63
+ }
64
+ function resolveHealthcheck(healthCheck, fallback, options) {
65
+ if (healthCheck === false) return;
66
+ if (typeof healthCheck === "function") return fallback;
67
+ if (!healthCheck) return fallback;
68
+ switch (healthCheck) {
69
+ case "pg_isready":
70
+ return {
71
+ test: ["CMD-SHELL", `pg_isready -U ${options.user ?? "postgres"}`],
72
+ ...DEFAULT_HEALTHCHECK_SETTINGS,
73
+ };
74
+ case "redis-cli":
75
+ return {
76
+ test: ["CMD", "redis-cli", "ping"],
77
+ ...DEFAULT_HEALTHCHECK_SETTINGS,
78
+ };
79
+ case "http":
80
+ return {
81
+ test: [
82
+ "CMD-SHELL",
83
+ `wget -qO- http://127.0.0.1:${options.internalPort}/ping || exit 1`,
84
+ ],
85
+ ...DEFAULT_HEALTHCHECK_SETTINGS,
86
+ };
87
+ case "tcp":
88
+ default:
89
+ return fallback;
90
+ }
91
+ }
92
+
93
+ // src/docker-compose/services/clickhouse.ts
94
+ var clickhouseDockerService = defineDockerService({
95
+ preset: "clickhouse",
96
+ defaults: {
97
+ port: 8123,
98
+ secondaryPort: 9000,
99
+ healthCheck: "http",
100
+ },
101
+ enhanceServiceConfig: (base, options) => ({
102
+ ...base,
103
+ secondaryPort: options.secondaryPort ?? 9000,
104
+ }),
105
+ build: ({ serviceKey, config }) => {
106
+ const user = config.user ?? "default";
107
+ const password = config.password ?? "clickhouse";
108
+ const database = config.database ?? "default";
109
+ const defaultHealthcheck = {
110
+ test: ["CMD-SHELL", "wget -qO- http://127.0.0.1:8123/ping || exit 1"],
111
+ interval: "250ms",
112
+ timeout: "5s",
113
+ retries: 20,
114
+ };
115
+ return {
116
+ service: {
117
+ image: "clickhouse/clickhouse-server:24-alpine",
118
+ ports: getDefaultPortBindings(serviceKey, config, "clickhouse"),
119
+ volumes: [`${serviceKey}_data:/var/lib/clickhouse`],
120
+ environment: {
121
+ CLICKHOUSE_USER: user,
122
+ CLICKHOUSE_PASSWORD: password,
123
+ CLICKHOUSE_DB: database,
124
+ },
125
+ ulimits: {
126
+ nofile: {
127
+ soft: 262144,
128
+ hard: 262144,
129
+ },
130
+ },
131
+ healthcheck: resolveHealthcheck(
132
+ config.healthCheck,
133
+ defaultHealthcheck,
134
+ {
135
+ internalPort: 8123,
136
+ user,
137
+ },
138
+ ),
139
+ },
140
+ volume: `${serviceKey}_data`,
141
+ };
142
+ },
143
+ });
144
+
145
+ // src/docker-compose/services/postgres.ts
146
+ var postgresDockerService = defineDockerService({
147
+ preset: "postgres",
148
+ defaults: {
149
+ port: 5432,
150
+ healthCheck: "pg_isready",
151
+ },
152
+ build: ({ serviceKey, config }) => {
153
+ const user = config.user ?? "postgres";
154
+ const password = config.password ?? "postgres";
155
+ const database = config.database ?? "postgres";
156
+ const defaultHealthcheck = {
157
+ test: ["CMD-SHELL", `pg_isready -U ${user}`],
158
+ interval: "250ms",
159
+ timeout: "5s",
160
+ retries: 20,
161
+ };
162
+ return {
163
+ service: {
164
+ image: "pgvector/pgvector:pg16",
165
+ ports: getDefaultPortBindings(serviceKey, config, "postgres"),
166
+ volumes: [`${serviceKey}_data:/var/lib/postgresql/data`],
167
+ environment: {
168
+ POSTGRES_USER: user,
169
+ POSTGRES_PASSWORD: password,
170
+ POSTGRES_DB: database,
171
+ },
172
+ healthcheck: resolveHealthcheck(
173
+ config.healthCheck,
174
+ defaultHealthcheck,
175
+ {
176
+ internalPort: 5432,
177
+ user,
178
+ },
179
+ ),
180
+ },
181
+ volume: `${serviceKey}_data`,
182
+ };
183
+ },
184
+ });
185
+
186
+ // src/docker-compose/services/redis.ts
187
+ var redisDockerService = defineDockerService({
188
+ preset: "redis",
189
+ defaults: {
190
+ port: 6379,
191
+ healthCheck: "redis-cli",
192
+ },
193
+ build: ({ serviceKey, config }) => {
194
+ const defaultHealthcheck = {
195
+ test: ["CMD", "redis-cli", "ping"],
196
+ interval: "250ms",
197
+ timeout: "5s",
198
+ retries: 20,
199
+ };
200
+ return {
201
+ service: {
202
+ image: "redis:7-alpine",
203
+ ports: getDefaultPortBindings(serviceKey, config, "redis"),
204
+ healthcheck: resolveHealthcheck(
205
+ config.healthCheck,
206
+ defaultHealthcheck,
207
+ {
208
+ internalPort: 6379,
209
+ },
210
+ ),
211
+ },
212
+ };
213
+ },
214
+ });
215
+
216
+ // src/docker-compose/services/index.ts
217
+ var PRESET_SERVICES = {
218
+ postgres: postgresDockerService,
219
+ redis: redisDockerService,
220
+ clickhouse: clickhouseDockerService,
221
+ };
222
+ var service = {
223
+ postgres: postgresDockerService.toServiceConfig,
224
+ redis: redisDockerService.toServiceConfig,
225
+ clickhouse: clickhouseDockerService.toServiceConfig,
226
+ custom(options) {
227
+ return options;
228
+ },
229
+ };
230
+ function inferDockerPreset(serviceKey) {
231
+ const normalized = serviceKey.toLowerCase();
232
+ if (Object.hasOwn(PRESET_SERVICES, normalized)) {
233
+ return normalized;
234
+ }
235
+ return;
236
+ }
237
+ function buildPresetDockerService(preset, input) {
238
+ return PRESET_SERVICES[preset].build(input);
239
+ }
240
+
241
+ export {
242
+ getDefaultPortBindings,
243
+ clickhouseDockerService,
244
+ postgresDockerService,
245
+ redisDockerService,
246
+ service,
247
+ inferDockerPreset,
248
+ buildPresetDockerService,
249
+ };