-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
eeac075
commit 83c4628
Showing
5 changed files
with
18 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,5 +5,4 @@ composer.lock | |
node_modules | ||
.env | ||
.git | ||
.github | ||
public/images | ||
.github |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -96,6 +96,7 @@ | |
'prefix' => '', | ||
'prefix_indexes' => true, | ||
], | ||
|
||
|
||
], | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,28 @@ | ||
#!/bin/sh | ||
|
||
# Create .env file from environment variables | ||
#printenv | awk -F "=" 'NF==2 && $2 !~ /[\n\t ]/' > .env | ||
# RUN printenv | grep -v "no_proxy" > .env # - Uncomment to load .env from env variables passed into container at runtime | ||
|
||
|
||
# Run our artisan commands | ||
php artisan route:clear | ||
|
||
php artisan route:cache | ||
|
||
php artisan config:clear | ||
|
||
php artisan config:cache | ||
|
||
php artisan view:clear | ||
|
||
php artisan storage:link | ||
php artisan view:cache | ||
|
||
php artisan migrate --force | ||
|
||
php artisan optimize | ||
|
||
chmod -R 777 storage | ||
|
||
php artisan db:seed --force | ||
|
||
php artisan test |