add core features (#14)
Build & Deploy Formulation / Build & Push Image (push) Failing after 15s
Build & Deploy Formulation / deploy (push) Skipped

Reviewed-on: #14
Co-authored-by: Nicholas Ward <nicholaspward@outlook.com>
This commit was merged in pull request #14.
This commit is contained in:
2026-08-18 18:22:34 -05:00
committed by nicholas
parent 20e23b100f
commit 2a1e16ed30
125 changed files with 23392 additions and 2082 deletions
+15
View File
@@ -0,0 +1,15 @@
import { dev } from "astro";
try {
const server = await dev({
configFile: "astro.app.config.mjs",
server: {
port: 4322,
host: true
}
});
console.log("Astro dev server is running on http://localhost:4322/app/");
} catch (err) {
console.error("Failed to start Astro dev server:", err);
process.exit(1);
}