-
Notifications
You must be signed in to change notification settings - Fork 90
/
init
executable file
·46 lines (39 loc) · 1.06 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
#!/bin/bash
#
# Initialize NestJS 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."
log "Copying .env.example -> .env"
cp .env.example .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 "Run migrations: yarn migration:run"
docker exec -it nest yarn migration:run
if [ $? -ne 0 ]; then
err "Migrations failed."
fi