mirror of
https://github.com/Pacerino/CaddyProxyManager.git
synced 2026-07-22 05:31:41 -04:00
Multi-stage Dockerfile builds the frontend and backend into a single Alpine image bundling Caddy, started via an entrypoint. CI runs backend tests (with race detector), builds the frontend and publishes the image to GHCR on master/tags. Targets a self-hosted runner with a local build cache. Updates .gitignore (secrets/runtime state) and README.
44 lines
663 B
Plaintext
44 lines
663 B
Plaintext
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
|
|
|
# dependencies
|
|
frontend/node_modules
|
|
frontend/.pnp
|
|
frontend/.pnp.js
|
|
|
|
# frontend build / cache
|
|
frontend/dist
|
|
frontend/.vite
|
|
frontend/*.tsbuildinfo
|
|
|
|
# testing
|
|
frontend/coverage
|
|
|
|
# misc
|
|
.DS_Store
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
|
|
# secrets / runtime data (never commit)
|
|
*.pem
|
|
*.key
|
|
*.db
|
|
*.sqlite
|
|
*.sqlite3
|
|
jwtkey.pem
|
|
|
|
# agent / tooling session state
|
|
.weave
|
|
.weave/
|
|
|
|
frontend/npm-debug.log*
|
|
frontend/yarn-debug.log*
|
|
frontend/yarn-error.log*
|
|
|
|
# embedded frontend build output (generated by `npm run build`)
|
|
backend/embed/assets
|
|
|
|
.vscode
|