A deployable web platform for collaborative conversation, ideation & sense-making. Use it for free at
https://github.com/metamaps/metamaps
co-intelligencecollaborationcollective-intelligenceconcept-mappingconversationideationmindmapssensemaking
public | ||
realtime | ||
sass | ||
src | ||
test | ||
test_support | ||
views | ||
.agignore | ||
.babelrc | ||
.buildpacks | ||
.codeclimate.yml | ||
.eslintignore | ||
.example-env | ||
.gitignore | ||
.nvmrc | ||
apiProxyMiddleware.js | ||
Metamaps.ServerData.js.erb | ||
package-lock.json | ||
package.json | ||
README.md | ||
server.js | ||
webpack.config.js | ||
webpack.test.config.js |
Make sure you have nodemon
and node-sass
installed
$ npm install -g nodemon node-sass
Run the following at the same time, in two terminals
$ API=http://localhost:3001 nodemon server.js
$ node-sass -w sass/application.scss public/css/application.css
To run the server as a daemon that will be re-run if it crashes, you can use the forever node package.
$ npm install -g forever
$ forever start server.js
Run the metamaps api in another terminal using
$ rails s -p 3001