Add DB upload flow and Docker deployment setup

This commit is contained in:
2026-04-14 23:17:45 +08:00
parent 268e76bf0d
commit 6c3ff0e3d1
12 changed files with 1787 additions and 253 deletions

View File

@@ -4,4 +4,11 @@ import react from '@vitejs/plugin-react'
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
server: {
port: 3500,
strictPort: true,
proxy: {
'/api': 'http://127.0.0.1:8787',
},
},
})