-
-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathsetup.sh
executable file
·89 lines (73 loc) · 1.98 KB
/
setup.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
87
88
89
#!/bin/bash
# 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 ! docker compose version >/dev/null 2>&1; then
err "⛔️ Docker Compose not installed"
fi
log "🍀 Docker and Docker Compose are installed, everything looks good."
# Check if NodeJS is installed
if ! type "node" >/dev/null 2>&1; then
err "⛔️ NodeJS not installed"
fi
# Check if NPM is installed
if ! type "npm" >/dev/null 2>&1; then
err "⛔️ NPM not installed"
fi
log "↪ Copying .env.example -> .env"
cp .env.example .env
if [ $? -ne 0 ]; then
err "⛔️ Error while copying .env"
fi
log "👐 Install dependencies"
# First install husky separately
npm install husky --save-dev
if [ $? -ne 0 ]; then
err "⛔️ Husky installation failed"
fi
# Then run the main npm install
npm install --ignore-scripts
if [ $? -ne 0 ]; then
err "⛔️ NPM install failed"
fi
# Initialize husky (with warning if it fails)
npx husky install
if [ $? -ne 0 ]; then
log "⚠️ Husky initialization failed, but continuing..."
fi
log "👐 Starting Docker containers"
docker compose up -d
if [ $? -ne 0 ]; then
err "⛔️ Docker Compose failed to start containers"
fi
# Wait for database to be ready
log "⏳ Waiting for database to be ready..."
sleep 10
log "🗃️ Running TypeORM schema sync"
npx typeorm-ts-node-commonjs schema:sync -d ./src/config/database.ts
if [ $? -ne 0 ]; then
err "⛔️ Schema sync failed"
fi
log "🔄 Running migrations"
npx typeorm-ts-node-commonjs migration:run -d ./src/config/database.ts
if [ $? -ne 0 ]; then
err "⛔️ Migrations failed"
fi
log "🐝 Clean repository"
rm -rf ./README.md
touch ./README.md
if [ $? -ne 0 ]; then
err "⛔️ Cleaning failed."
fi
log "✅ Setup completed successfully!"