Skip to content

Commit be16363

Browse files
committed
Replicating into two projects for future differentiation.
1 parent 33dfe09 commit be16363

File tree

123 files changed

+9103
-3
lines changed

Some content is hidden

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

123 files changed

+9103
-3
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"directory": "resources/public/bower_components"
3+
}
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
/target
2+
/classes
3+
/checkouts
4+
pom.xml
5+
pom.xml.asc
6+
*.jar
7+
*.class
8+
/.lein-*
9+
/.nrepl-port
10+
*.log
11+
*.hprof
12+
*.pid
13+
14+
twitterconf.edn
15+
resources/public/js/build/
16+
resources/public/bower_components/
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
FROM dockerfile/java:oracle-java8
2+
MAINTAINER Matthias Nehlsen <matthias.nehlsen@gmail.com>
3+
4+
RUN sudo apt-get update
5+
6+
ADD target/uberjar/birdwatch-0.1.0-SNAPSHOT-standalone.jar /srv/birdwatch-clj.jar
7+
ADD twitterconf.edn /srv/twitterconf.edn
8+
9+
EXPOSE 8888
10+
11+
CMD ["java", "-jar", "/srv/birdwatch-clj.jar"]
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
Copyright 2013 Matthias Nehlsen
2+
3+
Licensed under the Apache License, Version 2.0 (the "License");
4+
you may not use this file except in compliance with the License.
5+
You may obtain a copy of the License at
6+
7+
http://www.apache.org/licenses/LICENSE-2.0
8+
9+
Unless required by applicable law or agreed to in writing, software
10+
distributed under the License is distributed on an "AS IS" BASIS,
11+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
See the License for the specific language governing permissions and
13+
limitations under the License.
Lines changed: 60 additions & 0 deletions
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"name": "BirdWatch-Clojure",
3+
"version": "0.1.0",
4+
"homepage": "https://github.com/matthiasn/Birdwatch",
5+
"authors": [
6+
"Matthias Nehlsen <matthias.nehlsen@gmail.com>"
7+
],
8+
"description": "BirdWatch client written in ClojureScript",
9+
"license": "Apache",
10+
"private": true,
11+
"ignore": [
12+
"**/.*",
13+
"node_modules",
14+
"bower_components",
15+
"app/bower_components",
16+
"test",
17+
"tests"
18+
],
19+
"dependencies": {
20+
"jquery": "~2.0.3",
21+
"bootstrap": "~3.0.3",
22+
"react": "~0.11.2",
23+
"font-awesome": "~4.0.3",
24+
"d3": "~3.3.11",
25+
"momentjs": "~2.4.0",
26+
"underscore": "~1.5.2",
27+
"rickshaw": "~1.4.5",
28+
"regression-js": "*",
29+
"jquery.cookie": "~1.4.1"
30+
}
31+
}
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
var moment = function (a) {};
2+
moment.fromNow = function (bool) {};
3+
moment.unix = function () {};
4+
5+
var BirdWatch = {};
6+
BirdWatch.WordCloud = function (w, h, maxEntries, addSearch, elem) {};
7+
BirdWatch.init = function () {};
8+
BirdWatch.redraw = function (dataSource) {};
9+
10+
BirdWatch.updateBarchart = function (words) {};
11+
12+
var Rickshaw = {};
13+
Rickshaw.Fixtures = {};
14+
Rickshaw.Fixtures.RandomData = {};
15+
Rickshaw.Fixtures.RandomData.addData = function (n) {};
16+
Rickshaw.Graph = {};
17+
Rickshaw.Graph.Axis = {};
18+
Rickshaw.Graph.Axis.Time = function (graph) {};
19+
Rickshaw.Graph.HoverDetail = function (graph) {};

0 commit comments

Comments
 (0)