Tech talk portal web application
- GIT (get official package or use github client)
- Node.js + NPM (get it from official website)
- bower (run
npm install bower -g
to install it) - grunt (run
npm install grunt -g
to install it)
Clone the Repo:
git clone [email protected]:sandbox-team/techtalk-portal.git
Or if you are having problems with SSH keys on EPAM machine, such as I do, just use regular https clone url:
git clone https://github.com/sandbox-team/techtalk-portal.git
In console navigate to the folder you've cloned:
D:
cd \Websites\techtalk-portal
And run this commands to finish installing the application:
npm install
bower install
If you are running on Windows, install grunt-cli first:
npm install -g grunt-cli
Run this command in your CLI from techtalk-portal dir:
grunt
Run this command in your CLI from techtalk-portal dir:
node server.js
##Build the project for deployment(minification included)
grunt build
node server prod
And open http://localhost:3000 in your browser
Enjoy!