File tree 7 files changed +4
-16
lines changed
7 files changed +4
-16
lines changed Original file line number Diff line number Diff line change @@ -5,9 +5,7 @@ DOCKER_USER=1000:1000
5
5
STEAM_CLIENT_SECRET=STEAM_API_KEY
6
6
STEAM_REDIRECT_URI="http://localhost/steam/callback"
7
7
8
- LARAVEL_CLOUDFLARE_ENABLED=false
9
-
10
- APP_NAME=steam-buddy
8
+ APP_NAME="Steam Buddy"
11
9
APP_ENV=local
12
10
APP_KEY=
13
11
APP_DEBUG=true
Original file line number Diff line number Diff line change @@ -5,15 +5,13 @@ DOCKER_USER=1000:1000
5
5
STEAM_CLIENT_SECRET = STEAM_API_KEY
6
6
STEAM_REDIRECT_URI = " http://localhost/steam/callback"
7
7
8
- APP_NAME = steam-buddy
8
+ APP_NAME = " Steam Buddy "
9
9
APP_ENV = local
10
10
APP_KEY =
11
11
APP_DEBUG = true
12
12
APP_TIMEZONE = UTC
13
13
APP_URL = http://localhost
14
14
15
- LARAVEL_CLOUDFLARE_ENABLED = false
16
-
17
15
APP_LOCALE = en
18
16
APP_FALLBACK_LOCALE = en
19
17
APP_FAKER_LOCALE = en_US
Original file line number Diff line number Diff line change 10
10
use Illuminate \Foundation \Configuration \Exceptions ;
11
11
use Illuminate \Foundation \Configuration \Middleware ;
12
12
use Illuminate \Http \Middleware \AddLinkHeadersForPreloadedAssets ;
13
- use Illuminate \Http \Middleware \TrustProxies ;
14
13
15
14
return Application::configure (basePath: dirname (__DIR__ ))
16
15
->withRouting (
19
18
health: "/up " ,
20
19
)
21
20
->withMiddleware (function (Middleware $ middleware ): void {
22
- $ middleware ->replace (
23
- TrustProxies::class,
24
- Monicahq \Cloudflare \Http \Middleware \TrustProxies::class,
25
- );
21
+ $ middleware ->trustProxies (at: '* ' );
26
22
27
23
$ middleware ->web (append: [
28
24
HandleInertiaRequests::class,
Original file line number Diff line number Diff line change 12
12
"laravel/sanctum" : " ^4.0" ,
13
13
"laravel/socialite" : " ^5.12" ,
14
14
"laravel/tinker" : " ^2.9" ,
15
- "monicahq/laravel-cloudflare" : " ^3.7" ,
16
15
"predis/predis" : " ^2.0" ,
17
16
"socialiteproviders/steam" : " ^4.2" ,
18
17
"tightenco/ziggy" : " ^2.0"
Original file line number Diff line number Diff line change @@ -12,5 +12,3 @@ php artisan key:generate
12
12
php artisan migrate
13
13
php artisan cache:clear
14
14
php artisan config:clear
15
-
16
-
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ RUN apk update
4
4
RUN apk --no-cache add bash git
5
5
6
6
COPY . /app
7
+ COPY ./.env.example /app/.env
7
8
WORKDIR /app
8
9
RUN npm install
9
10
RUN npm run build
Original file line number Diff line number Diff line change @@ -5,5 +5,3 @@ composer install
5
5
cp /build /app/public
6
6
7
7
php artisan migrate
8
- php artisan cloudflare:reload
9
-
You can’t perform that action at this time.
0 commit comments