-
Notifications
You must be signed in to change notification settings - Fork 18
/
get-uf.sh
executable file
·40 lines (33 loc) · 1.26 KB
/
get-uf.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
#!/bin/bash
set -e
# TODO:
# - we could do some sanity checks here to make sure Vagrant and
# Virtualbox are installed
echo ""
echo "********************************************************************"
echo "********************************************************************"
echo ""
echo " UrbanFootprint quickstart process is starting ..."
echo ""
echo "********************************************************************"
echo "********************************************************************"
echo ""
# Download Vagrantfile
curl -# -o Vagrantfile https://raw.githubusercontent.com/CalthorpeAnalytics/urbanfootprint/master/Vagrantfile-prebuilt
# Start the VM using Vagrant
vagrant up
echo ""
echo "********************************************************************"
echo "********************************************************************"
echo ""
echo " UrbanFootprint quickstart is complete. Open your web browser to:"
echo " http://localhost:3333/footprint/"
echo ""
echo " using the following default credentials:"
echo " user: [email protected]"
echo " pass: admin@uf"
echo ""
echo "********************************************************************"
echo "********************************************************************"
echo ""
exit 0