-
Notifications
You must be signed in to change notification settings - Fork 2
Setting up the development environment
Keno Dressel edited this page Dec 7, 2015
·
14 revisions
- Installation
- Install Git (https://git-scm.com/download/)
- (On Windows)Use the option: Use Git from windows command prompt (Needed for bower)
- Install Node (https://nodejs.org/en/download/)
- Clone the repository to your local machine
- Run following commands on your root repository folder.
- "npm install" (installs all npm dependencies)
- "bower install" (installs all bower dependencies if it fails, try "npm install -g bower")
- Happy Coding!
- Run "grunt" before your commit/ use "grunt watch" during development for instant build after save
- If throws an sass error, try "npm rebuild node-sass"
Starting the server:
- Run "node server/server.js"
- Navigate to http://localhost:3000
About package managers:
npm is used for ther node server and the build process
bower is used for the website as it is a flat dependency package manager.