yapayzeka/.gitignore

70 lines
1.1 KiB
Plaintext
Raw Normal View History

2024-09-09 15:01:42 -07:00
# Laravel & PHP related files
2024-09-10 00:52:06 -07:00
/vendor/
2024-09-09 15:01:42 -07:00
/node_modules/
/public/storage
/storage/*.key
.env
.phpunit.result.cache
Homestead.json
Homestead.yaml
.npm
.phpunit.result.cache
.phpunit.cache
# IDE and Editor specific files
.idea
*.swp
*.swo
*.DS_Store
*.vscode
.vscode/
# Laravel compiled files
/storage/framework/cache/*
/storage/framework/sessions/*
/storage/framework/views/*
/storage/logs/*
# Ignore the public/hot file that is used for Hot Module Replacement by Webpack
/public/hot
# Ignore the Mix manifest
/public/mix-manifest.json
/public/css/app.css
/public/js/app.js
2024-09-10 00:52:06 -07:00
2024-09-09 15:01:42 -07:00
# Ignore the public directory's app-specific assets
/public/css/*
/public/js/*
2024-09-10 00:52:06 -07:00
2024-09-09 15:01:42 -07:00
# Ignore storage directory except storage/app/public
!/storage/app/public
2024-09-10 00:52:06 -07:00
2024-09-09 15:01:42 -07:00
# Ignore cache and log files
bootstrap/cache/*.php
storage/logs/*.log
storage/framework/sessions/*
storage/framework/views/*.php
2024-09-10 00:52:06 -07:00
2024-09-09 15:01:42 -07:00
# Ignore dotenv file
2024-09-10 00:52:06 -07:00
.env
2024-09-09 15:01:42 -07:00
# Ignore Composer lock file
composer.lock
# Ignore npm and yarn lock files
package-lock.json
yarn.lock
# Ignore custom build files
/public/build
# Ignore MacOS specific files
.DS_Store
# Ignore Linux specific files
*.swp
# Ignore Windows specific files
Thumbs.db