2026-09-03 17:45:35 +01:00
|
|
|
.git
|
|
|
|
|
.gitignore
|
2026-09-06 17:25:16 +01:00
|
|
|
.gitea
|
2026-09-03 17:45:35 +01:00
|
|
|
.dockerignore
|
|
|
|
|
vendor
|
|
|
|
|
storage
|
|
|
|
|
.env
|
2026-09-05 01:54:41 +01:00
|
|
|
.env.example
|
2026-09-03 17:45:35 +01:00
|
|
|
.phpunit.cache
|
|
|
|
|
.phpunit.result.cache
|
2026-09-05 01:54:41 +01:00
|
|
|
phpunit.xml
|
|
|
|
|
tests
|
2026-09-03 17:45:35 +01:00
|
|
|
docs
|
|
|
|
|
README.md
|
2026-09-05 01:54:41 +01:00
|
|
|
docker-compose.yml
|
2026-09-04 13:37:07 +01:00
|
|
|
|
2026-09-05 01:54:41 +01:00
|
|
|
# Frontend: the build runs `npm ci` in its own stage, and dist/ is emitted
|
|
|
|
|
# there -- none of this reaches either stage's COPY (web/package.json,
|
|
|
|
|
# web/package-lock.json, web/), it'd just be dead weight in the build context.
|
2026-09-04 13:37:07 +01:00
|
|
|
web/node_modules
|
|
|
|
|
web/dist
|
|
|
|
|
web/dev-dist
|
2026-09-05 01:54:41 +01:00
|
|
|
web/.gitignore
|
|
|
|
|
web/.dockerignore
|
|
|
|
|
web/.env.example
|
|
|
|
|
web/README.md
|