feat: add server deployment, desktop builds, and CI/CD pipeline

- Add Dockerfile with adapter-node for server deployment
- Add Kubernetes deployment and ingress manifests
- Add GitHub Actions workflow (server build, desktop builds, K8s deploy)
- Electron now loads hosted URL (https://optima.osdci.net) in production
- Add macOS DMG maker and make:macos script
- Switch to static imports in lib/index.ts
- Add .dockerignore
This commit is contained in:
2026-02-26 12:58:24 -06:00
parent 6791a6735b
commit ae5ac35058
15 changed files with 319 additions and 30 deletions
+2 -4
View File
@@ -1,4 +1,4 @@
import adapter from "@sveltejs/adapter-static";
import adapter from "@sveltejs/adapter-node";
import { vitePreprocess } from "@sveltejs/vite-plugin-svelte";
const config = {
@@ -9,9 +9,7 @@ const config = {
},
},
kit: {
adapter: adapter({
pages: ".vite/renderer/main_window",
}),
adapter: adapter(),
router: {
type: "pathname",
},