Skip to content

Commit ca31e3e

Browse files
Added sample commit
1 parent 96e0b4d commit ca31e3e

File tree

395 files changed

+46718
-6
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

395 files changed

+46718
-6
lines changed

.gitignore

Lines changed: 0 additions & 6 deletions
This file was deleted.

build-jboss.sh

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
#!/bin/bash
2+
echo "Road Runner.. Deploying to Jboss As 7..."
3+
mvn -Pproduction clean install -Dmaven.test.skip=true
4+
5+
echo "Descending into parent module..."
6+
echo "Cleaning up jboss..."
7+
# remove stale wars
8+
sudo rm -rf /opt/jboss-as/standalone/deployments/rr.war
9+
# rmeove all failed artifacts
10+
sudo rm -rf /opt/jboss-as/standalone/deployments/*.failed
11+
# remove all deployed artifacts
12+
sudo rm -rf /opt/jboss-as/standalone/deployments/*.deployed
13+
14+
echo "removed previous installations..."
15+
16+
17+
sleep 2
18+
19+
sudo cp ./rr-web/target/rr.war /opt/jboss-as/standalone/deployments
20+
echo "Copied new artifacts over...."
21+
sleep 2
22+
23+
echo "Done"

build-tomcat.sh

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
#!/bin/bash
2+
echo "Road Runner.. Build System...initiating build sequence..."
3+
mvn -Pdevelopment clean install -Dmaven.test.skip=true -U
4+
5+
echo "Descending into parent module..."
6+
echo "Cleaning up tomcat..."
7+
sudo rm -rf /opt/tomcat-instance/tomcat-7081/rr.war
8+
sudo rm -rf /opt/tomcat-instance/tomcat-7081/webapps/rr
9+
echo "Removing existing work directory"
10+
sudo rm -rf /opt/tomcat-instance/tomcat-7081/work/Catalina/localhost/rr
11+
12+
echo "Removed previous installations..."
13+
sleep 5
14+
15+
sudo cp ./rr-web/target/rr.war /opt/tomcat-instance/tomcat-7081/webapps
16+
echo "Done copying binary for Road Runner...."
17+
18+
echo "Done"

notes.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
http://maps.googleapis.com/maps/api/directions/json?origin=85021&destination=85034&sensor=false
2+
3+
http://scoa.rrshuttle.com/apiindex.html

0 commit comments

Comments
 (0)