refactor: restructure project to standard Go layout

- Reorganize code into cmd/bilidown and internal/ packages
- Rename client/ to web/ for frontend source
- Remove systray dependency for headless web service
- Embed static files into binary using go:embed
- Update import paths to use internal/ prefix
- Update .gitignore with common patterns

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-02 17:21:49 +08:00
parent 4facf82956
commit dd8eaef97d
61 changed files with 244 additions and 869 deletions
+22
View File
@@ -0,0 +1,22 @@
import { defineConfig } from 'vite'
export default defineConfig({
clearScreen: false,
server: {
proxy: {
'/api': 'http://127.0.0.1:8098'
},
host: '0.0.0.0'
},
build: {
outDir: '../build/static',
emptyOutDir: true,
},
css: {
preprocessorOptions: {
scss: {
api: 'modern-compiler'
}
}
}
})