-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
39 lines (30 loc) · 1.11 KB
/
Makefile
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
test:
@echo "Setting up everything and nothing at all..."
vagrant:
@echo "Setting up your Vagrant workspace for the first time..."
@if [ ! -d /vagrant/ops ]; \
then \
mkdir ops;\
fi
@git clone [email protected]:BarnesFoundation/barnes-ops.git /vagrant/ops/barnes-ops;
@git clone [email protected]:BarnesFoundation/barnes-ops-collection.git /vagrant/ops/barnes-ops-collection;
@git clone [email protected]:BarnesFoundation/barnes-ops-elasticsearch.git /vagrant/ops/barnes-ops-elasticsearch;
@/vagrant/ops/barnes-ops/vagrant/setup.sh
@/vagrant/ops/barnes-ops-collection/vagrant/setup.sh
@/vagrant/ops/barnes-ops-elasticsearch/vagrant/setup-es.sh
all-docs:
@echo "Installing the docs..."
@if [ ! -d /vagrant/docs ]; \
then \
mkdir docs;\
fi
#@git clone [email protected]:barnesfoundation/barnes-docs.git /vagrant/ops/barnes-docs;\
all-projects:
@echo "Cloneing all the projects..."
@if [ ! -d /vagrant/projects ]; \
then \
mkdir projects;\
fi
@git clone [email protected]:BarnesFoundation/CollectionWebsite.git /vagrant/projects/CollectionWebsite;\
all: vagrant all-docs all-projects
@echo "Installing everything..."