Jobber/.dockerignore
Shaheer Sarfaraz b94f85b149
Reduce low risk duplication (#79)
* clean up helpers

* shared in it's own top level folder

* workspaces setup

* build fix

* disable workspaces?

* run ci

* rename job-flow to gradcracker

* optional dependencies

* formatting?

* more optional modules

* allow post install runs

* node bump

* remove post install

* add optionals

* add more

* formatting

* comments, but im unsure

* run typescript DIRECTLY

* better build

* camoufox simplification

* lint

* build process doesn't exist

* build fix

* lockfile

* type check everything, build only for client

* rename steps correctly

* import from package!

* fix formatting

* don't fetch twice

* fix concern
2026-02-02 21:30:14 +00:00

64 lines
565 B
Plaintext

# Dependencies
**/node_modules
**/.venv
**/__pycache__
# Build outputs
**/dist
**/*.pyc
# Data (mounted as volume)
data/
# Environment files (passed via docker-compose)
.env
**/.env
**/.env.local
# Git
.git
.gitignore
# IDE
.idea
.vscode
*.swp
*.swo
# OS
.DS_Store
Thumbs.db
# Logs
*.log
npm-debug.log*
# Test files
**/*.test.ts
**/*.spec.ts
**/test/
**/tests/
**/__tests__/
# Documentation
*.md
!README.md
# CI/CD
.github
.gitlab-ci.yml
.travis.yml
# Docker
Dockerfile*
docker-compose*
# Temporary files
tmp
temp
*.tmp
# Coverage
coverage
.nyc_output