-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.sh
executable file
·31 lines (28 loc) · 951 Bytes
/
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
if [ -d "bin" ]; then
echo "bin/ already exists. Do you wish to delete it and reinstall[1/2]?"
select yn in "Yes" "No"; do
case $yn in
Yes ) rm -f -r bin; break;;
No ) exit;;
esac
done
fi
mkdir bin
cd bin
mkdir services
cd services
git clone https://github.com/intellead/intellead-connector.git
git clone https://github.com/intellead/intellead-security.git
git clone https://github.com/intellead/intellead-data.git
git clone https://github.com/intellead/intellead-enrich.git
git clone https://github.com/intellead/receitaws-data.git
git clone https://github.com/intellead/qcnpj-crawler.git
git clone https://github.com/intellead/intellead-classification.git
git clone https://github.com/intellead/intellead-normalization.git
cd ..
mkdir tests
cd tests
git clone https://github.com/intellead/intellead-integration-tests.git
cd ..
cp -R ../databases databases
cp ../docker-compose/docker-compose.yml docker-compose.yml