File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2626 composer install
2727 npm i
2828 npm run build
29- cp .env.example .env
30- sed -i 's|http://|https://|g' .env
29+ cp env_production.example .env
3130 php artisan key:generate
3231 php artisan migrate
3332 - name : Build and push
Original file line number Diff line number Diff line change 1+ APP_NAME=Laravel
2+ APP_ENV=local
3+ APP_KEY=
4+ APP_DEBUG=true
5+ APP_URL=https://localhost
6+
7+ APP_LOCALE=en
8+ APP_FALLBACK_LOCALE=en
9+ APP_FAKER_LOCALE=en_US
10+
11+ APP_MAINTENANCE_DRIVER=file
12+ # APP_MAINTENANCE_STORE=database
13+
14+ PHP_CLI_SERVER_WORKERS=4
15+
16+ BCRYPT_ROUNDS=12
17+
18+ LOG_CHANNEL=stack
19+ LOG_STACK=single
20+ LOG_DEPRECATIONS_CHANNEL=null
21+ LOG_LEVEL=debug
22+
23+ DB_CONNECTION=sqlite
24+ # DB_HOST=127.0.0.1
25+ # DB_PORT=3306
26+ # DB_DATABASE=laravel
27+ # DB_USERNAME=root
28+ # DB_PASSWORD=
29+
30+ SESSION_DRIVER=database
31+ SESSION_LIFETIME=120
32+ SESSION_ENCRYPT=false
33+ SESSION_PATH=/
34+ SESSION_DOMAIN=null
35+
36+ BROADCAST_CONNECTION=log
37+ FILESYSTEM_DISK=local
38+ QUEUE_CONNECTION=database
39+
40+ CACHE_STORE=database
41+ # CACHE_PREFIX=
42+
43+ MEMCACHED_HOST=127.0.0.1
44+
45+ REDIS_CLIENT=phpredis
46+ REDIS_HOST=127.0.0.1
47+ REDIS_PASSWORD=null
48+ REDIS_PORT=6379
49+
50+ MAIL_MAILER=log
51+ MAIL_SCHEME=null
52+ MAIL_HOST=127.0.0.1
53+ MAIL_PORT=2525
54+ MAIL_USERNAME=null
55+ MAIL_PASSWORD=null
56+ MAIL_FROM_ADDRESS="hello@example.com"
57+ MAIL_FROM_NAME="${APP_NAME}"
58+
59+ AWS_ACCESS_KEY_ID=
60+ AWS_SECRET_ACCESS_KEY=
61+ AWS_DEFAULT_REGION=us-east-1
62+ AWS_BUCKET=
63+ AWS_USE_PATH_STYLE_ENDPOINT=false
64+
65+ VITE_APP_NAME="${APP_NAME}"
66+ ASSET_URL=/
You can’t perform that action at this time.
0 commit comments