49 lines
980 B
Plaintext
49 lines
980 B
Plaintext
# Ignore all files and directories in the root except for the docker directory.
|
|
/build-test-deploy.sh
|
|
/docker-compose.production.yml
|
|
/docker-compose.staging.yml
|
|
/package-lock.json
|
|
/package.json
|
|
/playwright.config.js
|
|
/README.md
|
|
/stack.production.yml
|
|
/stack.staging.yml
|
|
# /tests/
|
|
Dockerfile.production
|
|
|
|
# Infrastructure and deployment files
|
|
/docker-compose*.yml
|
|
/stack.*.yml
|
|
/build-test-deploy.sh
|
|
/package*.json
|
|
/playwright*.js
|
|
/playwright-report/
|
|
/test-results/
|
|
/test_output.log
|
|
|
|
# Docker infrastructure
|
|
/docker/resume/Dockerfile*
|
|
/docker/resume/Caddyfile
|
|
/docker/resume/package.json
|
|
|
|
# Testing infrastructure
|
|
/tests/
|
|
/playwright-report/
|
|
/test-results/
|
|
/test_output.log
|
|
|
|
# Documentation and config
|
|
/README.md
|
|
/.gitignore
|
|
# Additional infrastructure files found in root
|
|
/.woodpecker.yml
|
|
/node_modules/
|
|
/.cursor/
|
|
/.git/
|
|
/package-lock.json
|
|
/playwright.config.js
|
|
/stack.production.yml
|
|
/stack.staging.yml
|
|
/docker-compose.production.yml
|
|
/docker-compose.staging.yml
|
|
/build-test-deploy.sh |