-
Notifications
You must be signed in to change notification settings - Fork 6
/
init
executable file
·82 lines (68 loc) · 2.04 KB
/
init
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
#!/bin/bash
#
# Initialize Laravel project for first usage.
#
# This script is following Google Shell Style standard
# https://google.github.io/styleguide/shell.xml
# STDERR log function
err() {
echo -e "\n[$(date +'%Y-%m-%dT%H:%M:%S%z')]: $@\n" >&2
exit 1
}
# STDOUT log function
log() {
echo -e "\n[$(date +'%Y-%m-%dT%H:%M:%S%z')]: $@\n"
}
# Check if Docker is installed
if ! type "docker" > /dev/null 2>&1; then
err "Docker not installed"
fi
# Check if Docker-compose is installed
if ! type "docker-compose" > /dev/null 2>&1; then
err "Docker-Compose not installed"
fi
log "Looks like both docker and docker-compose are installed, everything looks good."
echo "Do you want to include social login in your codebase? [y/n]"
read socialLoginAnswer
if [ "$socialLoginAnswer" == "y" ]; then
git merge feature/social-logins
fi
log "Copying .env.example -> .env"
cp src/.env.example src/.env
if [ $? -ne 0 ]; then
err "Error while copying .env"
fi
log "Starting docker-compose stack if not already started.."
docker-compose up -d
if [ $? -ne 0 ]; then
err "Error while starting docker-compose stack."
fi
log "Installing dependencies"
docker exec laravel composer install
if [ $? -ne 0 ]; then
err "Error while installing dependencies."
fi
log "Generating app key"
docker exec laravel php artisan key:generate && \
docker exec laravel php artisan cache:clear
if [ $? -ne 0 ]; then
err "Error while generating app key."
fi
log "Generating JWT key"
docker exec laravel php artisan jwt:secret && \
docker exec laravel php artisan cache:clear
if [ $? -ne 0 ]; then
err "Error while generating JWT key."
fi
log "Running database migrations"
docker exec laravel php artisan migrate
if [ $? -ne 0 ]; then
err "Error while running database migrations."
fi
log "Setting permissions for storage and bootstrap cache, this might ask you for your password"
sudo chmod -R 777 src/storage src/bootstrap/cache
if [ $? -ne 0 ]; then
err "Error while setting permissions."
fi
log "Copying the pre commit hook"
cp pre-commit .git/hooks/pre-commit