https://github.com/iprit/qemy-project
https://github.com/iprit/qemy-project
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/iprit/qemy-project
- Owner: IPRIT
- License: mit
- Created: 2015-07-07T17:54:34.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-07-08T01:08:32.000Z (almost 11 years ago)
- Last Synced: 2025-10-11T23:05:34.649Z (8 months ago)
- Language: JavaScript
- Size: 508 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
#Qemy
[](http://gruntjs.com/) [](http://npmjs.com)
----------
###Based on [Nodejs](http://nodejs.org/) + [Angular](http://angularjs.org/) + [Express](http://expressjs.com/) + [Jade](http://jade-lang.com/) + [Sass](http://sass-lang.com/) + [Grunt](http://gruntjs.com/).
### Development environment setup
####1. Prerequisites
* [Nodejs](http://www.nodejs.org/)
* [Node Package Manager](https://npmjs.org/) (NPM)
* [Git](http://git-scm.com/) (Git-scm)
* [Ruby](http://www.ruby-lang.org/en/downloads/) (Sass runtime environment)
####2. Dependencies
* [Grunt](http://gruntjs.com/) (task automation)
* [Bower](http://bower.io/) (Web package management)
* [Sass](http://sass-lang.com/) (css tool)
* **[Optional]** [PhantomJS](http://phantomjs.org/) (Full web stack on server) (Uses for search crawlers)
```
npm install bower -g
npm install grunt-cli -g
gem install sass
[optional] npm install phantomjs -g
```
####3. Installation
#####1. Cloning repo
```
$ git clone https://github.com/IPRIT/qemy-nodejs-boilerplate.git
```
#####2. Install required **node** modules
```
npm install
```
#####3. **Bower** modules installation:
```
bower install
```
#####4. Running **Grunt**
```
grunt
```
#####5. [Optional] Running **PhantomJS Server** (Not implement now)
```
npm run-script seo
```
####4. Running application
To start the web server, run:
```
npm start
```
To access the local server, enter the following URL into your web browser:
```
http://localhost:3000/
```