Skip to content
Draft
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
12 changes: 12 additions & 0 deletions .cursor/mcp.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"mcpServers": {
"laravel-boost": {
"command": "/usr/bin/php8.4",
"args": [
"/data/Projects/ivplv2/artisan",
"mcp:start",
"laravel-boost"
]
}
}
}
396 changes: 396 additions & 0 deletions .cursor/rules/laravel-boost.mdc

Large diffs are not rendered by default.

45 changes: 45 additions & 0 deletions .env.ci.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# App Environment
APP_NAME=DropIt!
APP_ENV=testing
APP_KEY=
APP_DEBUG=true
APP_URL=http://localhost

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

# Cache & Session
CACHE_DRIVER=array
SESSION_DRIVER=array

# Queue
QUEUE_CONNECTION=sync

# Redis (optional, for code that references Redis)
REDIS_CLIENT=phpredis
REDIS_HOST=127.0.0.1
REDIS_PASSWORD=null
REDIS_PORT=6379
REDIS_DB=1
REDIS_CACHE_DB=2

# Filesystem
FILESYSTEM_DRIVER=local

# Mail (optional, logs emails to storage)
MAIL_MAILER=log
MAIL_HOST=localhost
MAIL_PORT=1025
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null
MAIL_FROM_ADDRESS=no-reply@example.com
MAIL_FROM_NAME="${APP_NAME}"

# Broadcasting (optional)
BROADCAST_DRIVER=log
28 changes: 13 additions & 15 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
APP_NAME=Laravel
APP_NAME="DropIt!"
APP_ENV=local
APP_KEY=
APP_DEBUG=true
APP_URL=http://localhost
APP_URL=http://dropit.test

APP_LOCALE=en
APP_FALLBACK_LOCALE=en
Expand All @@ -16,31 +16,29 @@ PHP_CLI_SERVER_WORKERS=4
BCRYPT_ROUNDS=12

LOG_CHANNEL=stack
LOG_STACK=single
LOG_STACK=daily
LOG_DEPRECATIONS_CHANNEL=null
LOG_LEVEL=debug

DB_CONNECTION=sqlite
# DB_HOST=127.0.0.1
# DB_PORT=3306
# DB_DATABASE=laravel
# DB_USERNAME=root
# DB_PASSWORD=
DB_CONNECTION=mariadb
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=dropit_db
DB_USERNAME=root
DB_PASSWORD=

SESSION_DRIVER=database
SESSION_DRIVER=redis
SESSION_LIFETIME=120
SESSION_ENCRYPT=false
SESSION_PATH=/
SESSION_DOMAIN=null

BROADCAST_CONNECTION=log
FILESYSTEM_DISK=local
QUEUE_CONNECTION=database
QUEUE_CONNECTION=redis

CACHE_STORE=database
# CACHE_PREFIX=

MEMCACHED_HOST=127.0.0.1
CACHE_STORE=redis
CACHE_PREFIX=dropit

REDIS_CLIENT=phpredis
REDIS_HOST=127.0.0.1
Expand Down
Loading