Skip to content

Commit

Permalink
add lighting-server executable, closes lightning-viz#9
Browse files Browse the repository at this point in the history
  • Loading branch information
mathisonian committed Feb 20, 2015
1 parent ada3196 commit d7b01a2
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
4 changes: 4 additions & 0 deletions bin/lightning-server.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/usr/bin/env node

require('../server');

10 changes: 7 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,23 @@
{
"name": "lightning",
"name": "lightning-server",
"description": "lightning dataviz notebooks",
"version": "1.0.0",
"version": "0.1.0",
"author": {
"name": "Matthew Conlen",
"email": "[email protected]"
},
"bin": {
"lightning-server": "bin/lightning-server.js"
},
"engines": {
"node": "0.10.x"
},
"scripts": {
"start": "NODE_ENV=development nodemon --watch app --watch public/js server.js ",
"test": "mocha --timeout 20000",
"migrate": "./node_modules/.bin/sequelize db:migrate --config ./config/database.js",
"createdb": "psql -c 'create database \"lightning-viz\";'"
"createdb": "psql -c 'create database \"lightning-viz\";'",
"postinstall": "gulp build"
},
"browserify": {
"transform": [
Expand Down

0 comments on commit d7b01a2

Please sign in to comment.