A nodejs application can store image and some data.
- materializecss
- ejs
- mongodb
$ npm start
# OR using pm2
$ npm install pm2 -g
$ pm2 start {{startup script}} --name="{{appname}}" --watch
# OR using nodemon
$ npm install nodemon -g
$ nodemon
Make sure you have CloudFoundry Cli installed.
$ cf api https://api.ng.bluemix.net
$ cf login
$ cf push {{appname}}
Make sure you have Heroku Toolbelt installed.
$ heroku create
$ git push heroku master
$ heroku open