Skip to content

Commit c01ea14

Browse files
committed
wip
1 parent 441a09c commit c01ea14

15 files changed

+846
-707
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
/public/build
44
/public/hot
55
/public/storage
6+
/public/css/filament
7+
/public/js/filament
8+
/public/vendor/cachethq/cachet
69
/storage/*.key
710
/vendor
811
.env

composer.json

+5-3
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
],
1111
"repositories": {
1212
"cachet-core": {
13-
"type": "vcs",
14-
"url": "https://github.com/cachethq/core.git"
13+
"type": "path",
14+
"url": "../core"
1515
}
1616
},
1717
"require": {
@@ -49,7 +49,9 @@
4949
"@php artisan package:discover --ansi"
5050
],
5151
"post-update-cmd": [
52-
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
52+
"@php artisan vendor:publish --tag=laravel-assets --ansi --force",
53+
"@php artisan vendor:publish --tag=cachet-assets --ansi --force",
54+
"@php artisan filament:assets --ansi"
5355
],
5456
"post-root-package-install": [
5557
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""

0 commit comments

Comments
 (0)