Files
CaddyProxyManager/.gitignore
Pacerino abed2d2c69 [CI] Add Dockerfile, entrypoint and GitHub Actions pipeline
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.
2026-06-14 02:35:56 +02:00

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