forked from Hasnayeen/invobook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.sh
executable file
·86 lines (66 loc) · 1.87 KB
/
install.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
#!/bin/bash
red=`tput setaf 1`
green=`tput setaf 2`
blue=`tput setaf 4`
reset=`tput sgr0`
local=$2
# Check for docker installation
which docker && docker --version | grep "Docker version"
if [ $? -eq 0 ]
then
echo ""
echo "${green}Docker is installed${reset}"
echo ""
else
echo ""
echo "${res}Error: Please install docker before installing Goodwork software${reset}"
echo ""
exit 1
fi
# Check for docker-compose installation
which docker-compose && docker-compose --version | grep "docker-compose version"
if [ $? -eq 0 ]
then
echo ""
echo "${green}Docker-compose is installed${reset}"
echo ""
else
echo ""
echo "${red}Error: Please install docker-compose before installing Goodwork software${reset}"
echo ""
exit 1
fi
# Get domain name for ssl cert file
domain=$(awk 'BEGIN{FS="=";RS="\n"}{if($1 == "SSL_CERT_DOMAIN") print $2}' .env)
# Replace the domain in site.conf file
sed -i -e "s/example.com/$domain/g" site.conf
if [[ $# -gt 0 && local -eq "local" ]]
then
COMPOSE="sudo docker-compose -f docker-compose.dev.yml"
else
COMPOSE="sudo docker-compose"
fi
$COMPOSE build php
if [[ $# -gt 0 && local -eq "local" ]]
then
$COMPOSE run --rm -w /var/www php composer install
else
$COMPOSE run --rm -w /var/www php composer install --optimize-autoloader --no-dev
fi
$COMPOSE up -d
$COMPOSE run --rm -w /var/www php php artisan key:generate
$COMPOSE run --rm -w /var/www php chmod -R 777 /var/www/storage
$COMPOSE run --rm -w /var/www laravel_echo_server npm install
$COMPOSE run --rm -w /var/www php php artisan migrate --seed
$COMPOSE run --rm -w /var/www php php artisan route:cache
git checkout site.conf
echo ""
echo "${green}Installation complete.${reset}"
echo ""
echo ""
echo "${blue}Your application is running at :"
awk 'BEGIN{FS="=";RS="\n"}{if($1 == "APP_URL") print $2}' .env
echo "${reset}"
echo ""
# Exit from the script with success (0)
exit 0