Skip to content

Commit

Permalink
Merge pull request #4 from fsargent/master
Browse files Browse the repository at this point in the history
Updated package.json to install tarballs, friendly to NPM. No more SUDO
  • Loading branch information
cooperq committed Dec 5, 2013
2 parents 8da5c9f + cd8cc62 commit be1b188
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 57 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -8,7 +8,7 @@ Join the project or see it in action at http://www.ethersheet.org

#Installing
1. Download or git clone Ethersheet onto your server.
2. run the following command `sudo ./bin/install.sh`
2. run the following command `npm install`
3. copy examples/config-example.js to config.js in the main project directory
4. edit config and put in the database name as well as the username and password
5. run npm start and navigate to localhost:8080
Expand Down
13 changes: 0 additions & 13 deletions bin/git_clone.sh

This file was deleted.

5 changes: 0 additions & 5 deletions bin/git_sync.sh

This file was deleted.

3 changes: 0 additions & 3 deletions bin/install.sh

This file was deleted.

24 changes: 0 additions & 24 deletions bin/npm_install.sh

This file was deleted.

5 changes: 0 additions & 5 deletions bin/npm_link.sh

This file was deleted.

11 changes: 5 additions & 6 deletions package.json
Expand Up @@ -12,14 +12,14 @@
},
"dependencies": {
"express": "3.x",
"es_client": "https://github.com/ethersheet-collective/es_client.git",
"es_command": "https://github.com/ethersheet-collective/es_command.git",
"transactor": "https://github.com/ethersheet-collective/transactor.git",
"es_client": "https://api.github.com/repos/ethersheet-collective/es_client/tarball",
"es_command": "https://api.github.com/repos/ethersheet-collective/es_command/tarball",
"transactor": "https://api.github.com/repos/ethersheet-collective/transactor/tarball",
"ejs": ">=0.7.1",
"mysql": ">=0.9.5",
"underscore": ">=1.3",
"sockjs": ">=0.3.5",
"ueberDB": "https://github.com/Pita/ueberDB.git",
"ueberDB": "https://api.github.com/repos/Pita/ueberDB/tarball",
"csv": "*",
"async": "*",
"node-uuid": "*",
Expand All @@ -35,8 +35,7 @@
"start": "node app.js",
"test": "make test"
},
"directories" : {
"directories" : {
"lib" : "./lib"
}
}

0 comments on commit be1b188

Please sign in to comment.