Add start script to package.json and enhance CI workflow for deployment
CI / build (push) Failing after 48s
CI / deploy (push) Has been skipped

- Introduced a new "start" script in package.json to run the built application.
- Updated the CI workflow to include environment variables for deployment.
- Added steps for uploading build artifacts and deploying to a server using sshpass.
- Configured the deployment process to ensure the application runs on the specified port.
This commit is contained in:
eewing
2026-02-17 09:46:40 -06:00
parent 0c69463e74
commit c9453b19ed
2 changed files with 41 additions and 2 deletions
+1
View File
@@ -7,6 +7,7 @@
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"start": "node build",
"prepare": "svelte-kit sync || echo ''",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch"