Files
laravel-coolify/.dockerignore
Chimezie Enyinnaya 3716b52cb2 dockerize app
2024-09-09 21:18:20 +01:00

58 lines
848 B
Plaintext

# Ignore version control system directories
.git
.gitignore
.gitattributes
# Ignore development and build files
node_modules
npm-debug.log
yarn-error.log
*.log
*.cache
# Ignore environment files
.env
.env.*
!.env.example
# Ignore editor and IDE files
.idea
.vscode
*.swp
*.swo
*.sublime-*
# Ignore testing and documentation
tests
phpunit.xml
README.md
CHANGELOG.md
LICENSE
# Ignore other unnecessary files
*.md
*.yml
*.yaml
.editorconfig
.styleci.yml
phpstan.neon
psalm.xml
# Ignore backup files
*.bak
*.backup
# Ignore Docker related files (except Dockerfile)
docker-compose*.yml
.dockerignore
# Ignore Laravel specific files that are not needed in production
storage/framework/cache/*
storage/framework/sessions/*
storage/framework/views/*
storage/logs/*
bootstrap/cache/*
# Keep .gitkeep files to preserve directory structure
!.gitkeep