https://github.com/onecommons/acttogether
https://github.com/onecommons/acttogether
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/onecommons/acttogether
- Owner: onecommons
- Created: 2014-04-18T00:19:07.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2014-07-14T19:19:41.000Z (almost 12 years ago)
- Last Synced: 2025-12-10T07:28:45.514Z (6 months ago)
- Language: JavaScript
- Size: 7.58 MB
- Stars: 0
- Watchers: 12
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
App skeleton original built using `express --sessions --css less --ejs ocdemo`
## To Install
1. run `npm install` after cloning repo (use `npm ls` to verify dependencies)
2. install mongodb: e.g. sudo brew install mongodb; sudo mkdir -p /data/db; sudo chown `id -u` /data/db
3. `sudo gem install sass`
## To Run
To run app, in two consoles run:
```
ulimit -n 1024 & sudo mongod
DEBUG=express:* node app.js
```
## Tests
Run unit tests:
```
NODE_ENV=test ./node_modules/.bin/mocha --reporter=list
```
## Debugging
```npm install -g node-inspector```
debug app:
```node-debug app.js```
debug unit tests:
```
NODE_ENV=test ./node_modules/.bin/mocha --reporter=list --debug-brk
node-inspector
```