Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
674 changes: 0 additions & 674 deletions LICENSE

This file was deleted.

45 changes: 0 additions & 45 deletions README.md

This file was deleted.

1 change: 0 additions & 1 deletion _config.yml

This file was deleted.

36 changes: 36 additions & 0 deletions app.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
var express = require('express');
var path = require('path')
var http = require('http').Server(express)
var port = 8999;

// Process Input
if (process.argv.length < 3) {
console.log("Please enter hashtag in command line with no quotes or symbols: node app.js hashtag")
process.exit()
} else {
global.hashtag = process.argv[2]
console.log("Hashtag: " + hashtag)
}

// Start collection script (Python)
var spawn = require('child_process').spawn('python',
['scripts/create_stream.py', hashtag],
{stdio: [process.stdin, process.stdout, process.stderr]}
)

var app = express.createServer();

app.configure(function () {
app.use(express.cookieParser());
app.use(express.session({ secret: 'example' }));
app.use(express.bodyParser());
app.use(app.router);
app.use('/', express.static(path.join(__dirname, 'public')))
app.set('view engine', 'ejs');
app.set('view options', { layout: false });

});
require('./lib/dashboard_routes.js')(app);

app.listen(port);
console.log('Node listening on port %s', port);
162 changes: 0 additions & 162 deletions assets/css/keen-dashboards.css

This file was deleted.

5 changes: 0 additions & 5 deletions assets/lib/bootstrap/dist/bootstrap.min.css

This file was deleted.

5 changes: 0 additions & 5 deletions assets/lib/bootstrap/dist/css/bootstrap.min.css

This file was deleted.

7 changes: 0 additions & 7 deletions config/dashboard.config

This file was deleted.

Binary file not shown.
Binary file removed docs/Learning_Analytics_Dashboard_User_Guide.pdf
Binary file not shown.
Loading