File tree Expand file tree Collapse file tree 2 files changed +8
-30
lines changed Expand file tree Collapse file tree 2 files changed +8
-30
lines changed Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
- echo " Running deploy script \n "
3
+ echo " Running deploy script"
4
4
5
- echo " 1/5 Pull new changes\n "
6
- git pull origin main
5
+ echo " [1/4] Pulling from github "
6
+ git pull origin
7
7
8
- echo " 2/5 Create database if one isn't found \n "
8
+ echo " [1/5] Creating database if one isn't found"
9
9
touch database/database.sqlite
10
10
11
- echo " 3/5 Installing packages using composer\n "
11
+ echo " [2/6] Installing packages using composer"
12
12
composer install
13
13
14
- echo " 4/5 Publishing API Platform assets\n "
14
+ echo " [3/7] Publishing API Platform assets"
15
15
php artisan api-platform:install
16
16
17
- echo " 5/5 Migrating database\n "
17
+ echo " [4/8] Migrating database"
18
18
php artisan migrate
19
19
20
- echo " Site has been deployed!\n"
21
-
20
+ echo " Site has been deployed!"
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments