first commit

This commit is contained in:
Romulus21
2024-02-10 14:59:46 +01:00
commit 5bb0b25673
193 changed files with 28660 additions and 0 deletions

19
Makefile Normal file
View File

@@ -0,0 +1,19 @@
deploy: public/build/manifest.json
scp raspigate:/var/www/html/lara-bermite/.env .env.prod
pnpm run build --mode prod
ssh raspigate 'cd /var/www/ticcat && git pull origin master && make install'
scp -r public/build raspigate:/var/www/ticcat/public
scp -r public/images raspigate:/var/www/ticcat/public
install: vendor/autoload.php
php artisan down
php artisan migrate --force
php artisan optimize
php artisan up
vendor/autoload.php: composer.lock
php composer.phar install
touch vendor/autoload.php
public/build/manifest.json: package.json
pnpm install