Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to deploy KrakenJs on my production server

I would like to deploy my KrakenJS project. I used grunt to build the project and got the output in .build directory. I am not really sure what to do from here. Should I package the full project and run it on the server using the npm start or is there anything else I should do with the build results. Any help would be greatly appreciated.

Thanks

like image 501
Biri Avatar asked Nov 01 '22 00:11

Biri


1 Answers

Personnaly I'm using GIT to deploy app to production. It's fast and simple.

Some resources to automate deployment :

  • http://davidtucker.net/articles/automating-with-grunt/
  • http://codeplease.wordpress.com/2013/09/27/deploying-node-js-production/
  • https://gist.github.com/mkoryak/5293127
like image 97
Kevin Labécot Avatar answered Nov 14 '22 07:11

Kevin Labécot