Some checks failed
secrets-guard / encrypted (push) Successful in 24s
shell-lint / shellcheck (push) Successful in 26s
Deploy frontend to LAN dev server / build (push) Successful in 2m11s
Build + push frontend image (Forgejo registry) / build-push (push) Successful in 2m20s
Build + push backend image (Forgejo registry) / build-push (push) Successful in 2m28s
Deploy backend to LAN dev server / build (push) Successful in 2m45s
PR build (required check) / changes (pull_request) Successful in 16s
secrets-guard / encrypted (pull_request) Successful in 16s
shell-lint / shellcheck (pull_request) Successful in 15s
PR build (required check) / build-frontend (pull_request) Has been skipped
PR build (required check) / validate-observability (pull_request) Has been skipped
Deploy frontend to LAN dev server / deploy (push) Successful in 39s
PR build (required check) / build-backend (pull_request) Successful in 1m21s
PR build (required check) / gate (pull_request) Successful in 3s
Deploy backend to LAN dev server / deploy (push) Failing after 2m31s
29 lines
702 B
Text
29 lines
702 B
Text
# The build only COPYs server/, static/ and content/ -- everything else just
|
|
# bloats the context upload. Venvs especially: an untracked .venv silently
|
|
# swallowed by a broad COPY tripled the backend image once (Stage 2); keep
|
|
# them excluded even though no COPY should reach them.
|
|
.git
|
|
.gitignore
|
|
.venv/
|
|
.venv-test/
|
|
__pycache__/
|
|
**/__pycache__
|
|
*.pyc
|
|
.pytest_cache/
|
|
**/node_modules
|
|
tests/
|
|
# ...except the golden fixtures the Go build stage copies in to run
|
|
# internal/content's tests (see the Dockerfile's COPY tests/fixtures step).
|
|
!tests/fixtures/
|
|
!tests/fixtures/**
|
|
tools/
|
|
templates/
|
|
scripts/
|
|
*.py
|
|
requirements.txt
|
|
requirements-dev.txt
|
|
docker-compose.test.yml
|
|
Dockerfile
|
|
.dockerignore
|
|
Makefile
|
|
*.md
|