mirror of
https://github.com/nicotsx/ironmount.git
synced 2025-12-10 12:10:51 +01:00
feat(client): test mount from form
This commit is contained in:
@@ -13,11 +13,9 @@ export const generalDescriptor = (app: Hono) =>
|
||||
info: {
|
||||
title: "Ironmount API",
|
||||
version: "1.0.0",
|
||||
description: "API for managing Docker volumes",
|
||||
description: "API for managing volumes",
|
||||
},
|
||||
servers: [
|
||||
{ url: "http://localhost:3000", description: "Development Server" },
|
||||
],
|
||||
servers: [{ url: "http://localhost:3000", description: "Development Server" }],
|
||||
},
|
||||
});
|
||||
|
||||
@@ -58,9 +56,7 @@ const socketPath = "/run/docker/plugins/ironmount.sock";
|
||||
fetch: app.fetch,
|
||||
});
|
||||
|
||||
console.log(
|
||||
`Server is running at http://localhost:8080 and unix socket at ${socketPath}`,
|
||||
);
|
||||
console.log(`Server is running at http://localhost:8080 and unix socket at ${socketPath}`);
|
||||
})();
|
||||
|
||||
export type AppType = typeof app;
|
||||
|
||||
Reference in New Issue
Block a user