Skip to content

Commit e1fc5bd

Browse files
committedFeb 5, 2023
Update Laravel 9.x and introduce Material Dashboard 2 by creative tim
1 parent 5fd7428 commit e1fc5bd

File tree

698 files changed

+85239
-75162
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

698 files changed

+85239
-75162
lines changed
 

‎.clear_laravel.sh

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#!/bin/bash
2+
php artisan cache:clear
3+
php artisan config:clear
4+
php artisan view:clear
5+
php artisan route:clear
6+
php artisan clear-compiled
7+
8+
php artisan config:cache
9+
php artisan route:cache
10+
php artisan optimize
11+
12+
php artisan queue:restart
13+
#config again to load env Variables
14+
php artisan config:clear

‎.env.example

+52-12
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,61 @@
1+
APP_NAME=Laravel
12
APP_ENV=local
3+
APP_KEY=
24
APP_DEBUG=true
3-
APP_KEY=SomeRandomString
5+
APP_URL=http://localhost
46

5-
DB_HOST=localhost
6-
DB_DATABASE=homestead
7-
DB_USERNAME=homestead
8-
DB_PASSWORD=secret
7+
LOG_CHANNEL=stack
8+
LOG_DEPRECATIONS_CHANNEL=null
9+
LOG_LEVEL=debug
910

11+
DB_CONNECTION=mysql
12+
DB_HOST=127.0.0.1
13+
DB_PORT=3306
14+
DB_DATABASE=laravel
15+
DB_USERNAME=root
16+
DB_PASSWORD=
17+
18+
BROADCAST_DRIVER=log
1019
CACHE_DRIVER=file
20+
FILESYSTEM_DISK=local
21+
QUEUE_CONNECTION=database
1122
SESSION_DRIVER=file
12-
QUEUE_DRIVER=sync
23+
SESSION_LIFETIME=120
1324

14-
MAIL_DRIVER=smtp
15-
MAIL_HOST=mailtrap.io
16-
MAIL_PORT=2525
17-
MAIL_ENCRYPTION=null
25+
MEMCACHED_HOST=127.0.0.1
26+
27+
REDIS_HOST=127.0.0.1
28+
REDIS_PASSWORD=null
29+
REDIS_PORT=6379
30+
31+
MAIL_MAILER=smtp
32+
MAIL_HOST=mailhog
33+
MAIL_PORT=1025
1834
MAIL_USERNAME=null
1935
MAIL_PASSWORD=null
20-
MAIL_FROM=null
21-
MAIL_NAME=FFSNodeAlarm
36+
MAIL_ENCRYPTION=null
37+
MAIL_FROM_ADDRESS="hello@example.com"
38+
MAIL_FROM_NAME="${APP_NAME}"
39+
40+
AWS_ACCESS_KEY_ID=
41+
AWS_SECRET_ACCESS_KEY=
42+
AWS_DEFAULT_REGION=us-east-1
43+
AWS_BUCKET=
44+
AWS_USE_PATH_STYLE_ENDPOINT=false
45+
46+
PUSHER_APP_ID=
47+
PUSHER_APP_KEY=
48+
PUSHER_APP_SECRET=
49+
PUSHER_HOST=
50+
PUSHER_PORT=443
51+
PUSHER_SCHEME=https
52+
PUSHER_APP_CLUSTER=mt1
53+
54+
VITE_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
55+
VITE_PUSHER_HOST="${PUSHER_HOST}"
56+
VITE_PUSHER_PORT="${PUSHER_PORT}"
57+
VITE_PUSHER_SCHEME="${PUSHER_SCHEME}"
58+
VITE_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"
59+
60+
FREIFUNKNODES_JSON_URL="https://netinfo.freifunk-stuttgart.de/json/nodes.json"
61+
ADMIN_MAIL="test@example.com"

0 commit comments

Comments
 (0)