-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo
executable file
·40 lines (26 loc) · 1.04 KB
/
demo
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
#!/bin/bash
clear
echo ""
echo "┌─────────────────────────────────────────────┐"
echo "│ NEF emulator live demo │"
echo "└─────────────────────────────────────────────┘"
printf "\n\n"
read -p " 🪧 STEP 1: clone the repository from Github 👇👇👇"
echo "git clone https://github.com/medianetlab/NEF_emulator"
git clone https://github.com/medianetlab/NEF_emulator
echo "cd NEF_emulator/"
cd NEF_emulator
echo "git switch develop"
git switch develop
printf "\n\n\n"
read -p " 🪧 STEP 2: prepare ⚙️ the environment variables 👇👇👇"
make prepare-dev-env
printf "\n\n\n"
read -p " 🪧 STEP 3: build the Docker 🐳 images 👇👇👇"
make build
printf "\n\n\n"
read -p " 🪧 STEP 4: run the 📦 containers 👇👇👇"
make upd
printf "\n\n\n"
read -p " 🪧 STEP 5: check the 🪵 logs 👇👇👇"
make logs