Skip to content

Commit 9d890a4

Browse files
author
Volodymyr Ponomarenko
committed
Init
1 parent 6668718 commit 9d890a4

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

start.sh

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
#!/usr/bin/env bash
2+
echo "Running composer"
3+
composer install --no-dev --working-dir=/var/www/html
4+
5+
echo "Caching config..."
6+
php artisan config:cache
7+
8+
echo "Caching routes..."
9+
php artisan route:cache
10+
11+
echo "Running migrations..."
12+
php artisan migrate --force
13+
14+
echo "Running seed..."
15+
php artisan db:seed

0 commit comments

Comments
 (0)