optimize dockerfile and copy js library used
This commit is contained in:
@@ -1,52 +1,70 @@
|
||||
# Git
|
||||
.git
|
||||
.gitignore
|
||||
README.md
|
||||
|
||||
# Docker files
|
||||
Dockerfile*
|
||||
docker-compose*
|
||||
.dockerignore
|
||||
|
||||
# Development files
|
||||
.env.local
|
||||
.env.development
|
||||
.env.staging
|
||||
node_modules
|
||||
# Dependencies
|
||||
node_modules/
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
|
||||
# IDE files
|
||||
.vscode
|
||||
.idea
|
||||
# Laravel
|
||||
/vendor/
|
||||
.env
|
||||
.env.*
|
||||
!.env.example
|
||||
|
||||
# Storage and logs
|
||||
/storage/*.key
|
||||
/storage/logs/*
|
||||
/storage/framework/cache/*
|
||||
/storage/framework/sessions/*
|
||||
/storage/framework/views/*
|
||||
/storage/app/*
|
||||
/bootstrap/cache/*
|
||||
|
||||
# IDE and editor files
|
||||
.vscode/
|
||||
.idea/
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
|
||||
# OS files
|
||||
# OS generated files
|
||||
.DS_Store
|
||||
.DS_Store?
|
||||
._*
|
||||
.Spotlight-V100
|
||||
.Trashes
|
||||
ehthumbs.db
|
||||
Thumbs.db
|
||||
|
||||
# Laravel specific
|
||||
storage/app/*
|
||||
!storage/app/.gitignore
|
||||
storage/framework/cache/*
|
||||
!storage/framework/cache/.gitignore
|
||||
storage/framework/sessions/*
|
||||
!storage/framework/sessions/.gitignore
|
||||
storage/framework/views/*
|
||||
!storage/framework/views/.gitignore
|
||||
storage/logs/*
|
||||
!storage/logs/.gitignore
|
||||
bootstrap/cache/*
|
||||
!bootstrap/cache/.gitignore
|
||||
# Git
|
||||
.git/
|
||||
.gitignore
|
||||
|
||||
# Backup files
|
||||
*.zip
|
||||
*.tar.gz
|
||||
*.sql
|
||||
# Documentation
|
||||
README.md
|
||||
*.md
|
||||
|
||||
# Test files
|
||||
tests/
|
||||
phpunit.xml
|
||||
# Docker
|
||||
Dockerfile*
|
||||
docker-compose*
|
||||
.dockerignore
|
||||
|
||||
# Testing
|
||||
/tests/
|
||||
phpunit.xml
|
||||
.phpunit.result.cache
|
||||
|
||||
# Build tools
|
||||
webpack.mix.js
|
||||
package.json
|
||||
package-lock.json
|
||||
yarn.lock
|
||||
mix-manifest.json
|
||||
|
||||
# Temporary files
|
||||
*.tmp
|
||||
*.temp
|
||||
|
||||
# Keep vendor assets in public folder
|
||||
!public/js/vendor/
|
||||
!public/css/vendor/
|
||||
!public/js/locales/
|
||||
Reference in New Issue
Block a user