-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* init ssr support * wip * wip * add SSR support to the Dockerfile * replace Vue3PictureSwipe component
- Loading branch information
Showing
79 changed files
with
1,407 additions
and
1,331 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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
/.git | ||
/.github | ||
/.husky | ||
/.idea | ||
/.vscode | ||
/bootstrap/cache/*.php | ||
/coverage | ||
/node_modules | ||
/public/assets | ||
/public/hot | ||
/public/storage | ||
/public/vendor | ||
/storage/*.key | ||
/storage/app/* | ||
/storage/clockwork | ||
/storage/debugbar | ||
/storage/framework/cache/data/* | ||
/storage/framework/sessions/* | ||
/storage/framework/testing/* | ||
/storage/framework/views/* | ||
/storage/logs/* | ||
/vendor | ||
_ide_helper_models.php | ||
_ide_helper.php | ||
.DS_Store | ||
.env | ||
.php_cs.cache | ||
.php-cs-fixer.cache | ||
.phpstorm.meta.php | ||
.phpunit.result.cache | ||
docker-compose.yml | ||
Dockerfile |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
20 |
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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
return [ | ||
|
||
'skip-route-function' => true, | ||
|
||
'except' => [ | ||
'debugbar.*', | ||
'dusk.*', | ||
'filament.*', | ||
'horizon.*', | ||
'ignition.*', | ||
'telescope', | ||
], | ||
|
||
]; |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/command/with-contenv sh | ||
|
||
cd /var/www | ||
|
||
php artisan inertia:start-ssr |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
longrun |
Empty file.
Oops, something went wrong.