feat: add workflow for promoting master to production with testing and deployment steps
All checks were successful
Chore App Build, Test, and Push Docker Images / build-and-push (push) Successful in 2m23s

This commit is contained in:
2026-04-26 14:33:51 -04:00
parent c5306a15d1
commit 2b2f4f46c0
12 changed files with 47 additions and 26 deletions

View File

@@ -1,6 +1,7 @@
import { fileURLToPath, URL } from 'node:url'
import { defineConfig, loadEnv } from 'vite'
import vue from '@vitejs/plugin-vue'
import basicSsl from '@vitejs/plugin-basic-ssl'
import fs from 'fs'
export default defineConfig(({ mode }) => {
@@ -13,10 +14,10 @@ export default defineConfig(({ mode }) => {
: undefined
return {
plugins: [vue()],
plugins: [vue(), basicSsl()],
server: {
host: '0.0.0.0',
https: httpsConfig,
https: httpsConfig ?? true,
proxy: {
'/api': {
target: `http://${backendHost}:5000`,