@replayio/app-building 1.8.2 → 1.9.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.
package/dist/container.js CHANGED
@@ -119,8 +119,9 @@ export async function startContainer(config, repo) {
119
119
  const containerEnv = buildContainerEnv(repo, config.envVars, extra);
120
120
  // Build docker run args
121
121
  const args = ["run", "-d", "--rm", "--name", containerName];
122
- // --network host: container shares host network stack (no -p needed)
123
- args.push("--network", "host");
122
+ // Use explicit port mapping for macOS Docker Desktop compatibility
123
+ // (--network host only works on Linux)
124
+ args.push("-p", `${hostPort}:${hostPort}`);
124
125
  for (const [k, v] of Object.entries(containerEnv)) {
125
126
  args.push("--env", `${k}=${v}`);
126
127
  }
package/dist/fly.d.ts CHANGED
@@ -3,10 +3,10 @@
3
3
  */
4
4
  export declare function createApp(token: string, name: string, org?: string): Promise<void>;
5
5
  /**
6
- * Create a Fly Volume in the app's primary region.
6
+ * Create a Fly Volume in the given region.
7
7
  * Returns the volume ID.
8
8
  */
9
- export declare function createVolume(app: string, token: string, name: string, sizeGb?: number): Promise<string>;
9
+ export declare function createVolume(app: string, token: string, name: string, region: string, sizeGb?: number): Promise<string>;
10
10
  /**
11
11
  * Delete a Fly Volume.
12
12
  */
package/dist/fly.js CHANGED
@@ -52,14 +52,15 @@ export async function createApp(token, name, org) {
52
52
  await gqlFetch(allocateMutation, { input: { appId: name, type: "v6" } });
53
53
  }
54
54
  /**
55
- * Create a Fly Volume in the app's primary region.
55
+ * Create a Fly Volume in the given region.
56
56
  * Returns the volume ID.
57
57
  */
58
- export async function createVolume(app, token, name, sizeGb = 50) {
58
+ export async function createVolume(app, token, name, region, sizeGb = 50) {
59
59
  const res = await flyFetch(`/apps/${app}/volumes`, token, {
60
60
  method: "POST",
61
61
  body: JSON.stringify({
62
62
  name,
63
+ region,
63
64
  size_gb: sizeGb,
64
65
  encrypted: true,
65
66
  require_unique_zone: false,
@@ -82,45 +83,66 @@ export async function deleteVolume(app, token, volumeId) {
82
83
  * Returns the machine ID and volume ID.
83
84
  */
84
85
  export async function createMachine(app, token, image, env, name) {
85
- // Create a volume for /repo storage
86
86
  const volumeName = `repo_${name.replace(/-/g, "_")}`.slice(0, 30);
87
- const volumeId = await createVolume(app, token, volumeName, 50);
88
- try {
89
- const res = await flyFetch(`/apps/${app}/machines`, token, {
90
- method: "POST",
91
- body: JSON.stringify({
92
- name,
93
- config: {
94
- image,
95
- env,
96
- auto_destroy: true,
97
- restart: { policy: "no" },
98
- guest: {
99
- cpu_kind: "performance",
100
- cpus: 16,
101
- memory_mb: 32768,
102
- },
103
- mounts: [{ volume: volumeId, path: "/repo" }],
104
- services: [
105
- {
106
- ports: [{ port: 443, handlers: ["tls", "http"] }],
107
- protocol: "tcp",
108
- internal_port: 3000,
109
- autostart: false,
110
- autostop: "off",
87
+ // Regions to try in order. dfw and iad have the most reliable capacity for
88
+ // performance machines. Fall back to ord and sjc if needed.
89
+ const regions = ["dfw", "iad", "ord", "sjc"];
90
+ // Delete unattached volumes in parallel with creating the new machine.
91
+ let cleanupDone;
92
+ for (const region of regions) {
93
+ const volumeId = await createVolume(app, token, volumeName, region, 50);
94
+ // Start cleanup on first attempt only
95
+ if (!cleanupDone) {
96
+ cleanupDone = listVolumes(app, token).then(vols => Promise.all(vols.map(async ({ id, attached_machine_id }) => {
97
+ if (attached_machine_id || id === volumeId)
98
+ return;
99
+ await deleteVolume(app, token, id).catch(() => { });
100
+ })));
101
+ }
102
+ try {
103
+ const res = await flyFetch(`/apps/${app}/machines`, token, {
104
+ method: "POST",
105
+ body: JSON.stringify({
106
+ name,
107
+ region,
108
+ config: {
109
+ image,
110
+ env,
111
+ auto_destroy: true,
112
+ restart: { policy: "no" },
113
+ guest: {
114
+ cpu_kind: "performance",
115
+ cpus: 16,
116
+ memory_mb: 32768,
111
117
  },
112
- ],
113
- },
114
- }),
115
- });
116
- const data = (await res.json());
117
- return { machineId: data.id, volumeId };
118
- }
119
- catch (err) {
120
- // Clean up volume if machine creation fails
121
- await deleteVolume(app, token, volumeId).catch(() => { });
122
- throw err;
118
+ mounts: [{ volume: volumeId, path: "/repo" }],
119
+ services: [
120
+ {
121
+ ports: [{ port: 443, handlers: ["tls", "http"] }],
122
+ protocol: "tcp",
123
+ internal_port: 3000,
124
+ autostart: false,
125
+ autostop: "off",
126
+ },
127
+ ],
128
+ },
129
+ }),
130
+ });
131
+ const data = (await res.json());
132
+ await cleanupDone;
133
+ return { machineId: data.id, volumeId };
134
+ }
135
+ catch (err) {
136
+ await deleteVolume(app, token, volumeId).catch(() => { });
137
+ const msg = err instanceof Error ? err.message : String(err);
138
+ if (msg.includes("412")) {
139
+ console.log(`Insufficient resources in ${region}, trying next region...`);
140
+ continue;
141
+ }
142
+ throw err;
143
+ }
123
144
  }
145
+ throw new Error("Failed to create machine after exhausting retries");
124
146
  }
125
147
  /**
126
148
  * Wait for a Fly Machine to reach the "started" state.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@replayio/app-building",
3
- "version": "1.8.2",
3
+ "version": "1.9.0",
4
4
  "description": "Library for managing agentic app-building containers",
5
5
  "type": "module",
6
6
  "exports": {