Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
node_modules/
vendor/
storage/framework/cache/**
storage/framework/sessions/**
storage/framework/views/**
storage/logs/**
.git
.gitignore
.env
.env.*
!.env.example
*.log
*.md
!README.md
tests/
.phpunit.result.cache
.editorconfig
.php_cs
docker-compose.yml
Dockerfile
.dockerignore
.github/
.idea/
.vscode/
*.swp
*.swo
*~
.DS_Store
Thumbs.db
17 changes: 12 additions & 5 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,19 @@ APP_MAINTENANCE_STORE=database

BCRYPT_ROUNDS=12

# Logging
LOG_CHANNEL=stack
LOG_STACK=single
LOG_DEPRECATIONS_CHANNEL=null
LOG_LEVEL=debug

# Database
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_HOST=mysql
DB_PORT=3306
DB_DATABASE=larablog
DB_USERNAME=root
DB_PASSWORD=
DB_USERNAME=larablog
DB_PASSWORD=secret

BROADCAST_CONNECTION=log
FILESYSTEM_DISK=local
Expand All @@ -33,13 +35,13 @@ QUEUE_CONNECTION=database
CACHE_STORE=database
CACHE_PREFIX=

MEMCACHED_HOST=127.0.0.1

# Redis
REDIS_CLIENT=phpredis
REDIS_HOST=127.0.0.1
REDIS_PASSWORD=null
REDIS_PORT=6379

# Mail
MAIL_MAILER=smtp
MAIL_HOST=localhost
MAIL_PORT=25
Expand All @@ -49,21 +51,26 @@ MAIL_ENCRYPTION=null
MAIL_FROM_ADDRESS=null
MAIL_FROM_NAME="${APP_NAME}"

# AWS
AWS_ACCESS_KEY_ID=
AWS_SECRET_ACCESS_KEY=
AWS_DEFAULT_REGION=us-east-1
AWS_BUCKET=
AWS_USE_PATH_STYLE_ENDPOINT=false

# Vite
VITE_APP_NAME="${APP_NAME}"

# Google Drive
GOOGLE_DRIVE_CLIENT_ID=
GOOGLE_DRIVE_CLIENT_SECRET=
GOOGLE_DRIVE_REFRESH_TOKEN=
GOOGLE_DRIVE_FOLDER=

# Analytics
GOOGLE_ANALYTICS_TRACKING_ID=

# Sentry
SENTRY_LARAVEL_DSN=
SENTRY_TRACES_SAMPLE_RATE=1.0

14 changes: 14 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ Homestead.yaml
npm-debug.log
public/storage
/public/hot
/public/build
/public/storage
/storage/*.key
/storage/pail
/vendor
public/mix-manifest.json
storage/*.key
vendor
Expand All @@ -20,3 +25,12 @@ _ide_helper.php
/clover.xml
.phpunit.result.cache
.composer.lock
.env.backup
.env.production
.phpactor.json
/auth.json
/.fleet
/.idea
/.nova
/.vscode
/.zed
Loading
Loading