-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfirst_time_setup.sh
executable file
·53 lines (44 loc) · 1.6 KB
/
first_time_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
#!/usr/bin/env bash
set -o errexit
echo "=== start of first time setup ==="
# change to script's directory
cd "$(dirname "$0")"
# make sure Docker and Node.js is installed
if [ ! -x "$(command -v docker)" ] ||
[ ! -x "$(command -v node)" ]; then
echo ""
echo -e "\033[0;31m[Error with Exception]\033[0m"
echo "Please make sure Docker and Node.js are installed"
echo ""
echo "Install Docker: https://docs.docker.com/docker-for-mac/install/"
echo "Install Node.js: https://nodejs.org/en/"
echo ""
exit
fi
# download eosio/eos-dev:v1.4.2 image
echo "=== pull eosio/eos-dev image v1.4.2 from docker hub ==="
docker pull eosio/eos-dev:v1.4.2
# force remove the previous eosio container if it exists
# create a clean data folder in the eosio_docker to preserve block data
echo "=== setup/reset data for eosio_docker ==="
docker stop eosio_blog_container || true && docker rm --force eosio_blog_container || true
rm -rf "./eosio_docker/data"
mkdir -p "./eosio_docker/data"
# download mongo:4.0 image
echo "=== pull mongo image 4.0 from docker hub ==="
docker pull mongo:4.0
# force remove the previous mongodb container if it exists
echo "=== setup/reset data for mongo_blog_container ==="
docker stop mongo_blog_container || true && docker rm --force mongo_blog_container || true
# set up node_modules for frontend
echo "=== npm install packpage for frontend react app ==="
# change directory to ./frontend
cd "./frontend"
npm install
cd "../"
# set up node_modules for backend
echo "=== npm install packpage for frontend react app ==="
# change directory to ./backend
cd "./backend"
npm install
cd "../"