This project is a cheering web page for HKT48 member 宮脇咲良 with 2014 AKB48 第六回選抜総選挙
Overview
├── app - Client
│ ├── data - Static data files
│ ├── i18n - Language files
│ ├── images
│ ├── scripts
│ │ ├── app.js - Main Application Script
│ │ ├── controllers - AngularJS Controller
│ │ └── directives - AngularJS Directive
│ ├── styles
│ │ └── main.scss - Sass CSS
│ └── views
│ ├── index.html - Main Application Page
│ └── partials - AngularJS Partial Page
│
└── lib - Server
Install Yeoman http://yeoman.io/
$ npm install -g yo
Install AngularJS Full-Stack generator GitHub
$ npm install -g generator-angular-fullstack
$ git clone https://github.com/amowu/sakura.git
This will clone the latest version of the project repository to a sakura
folder.
$ cd sakura
Once you've installed yeoman, you're just a few steps away from starting to develop you application.
$ npm install
This command does a few things:
- First it will install the dependencies needed for the application to run.
- If you're running in a development environment, it will then also install development dependencies needed for testing and running your application.
Finally, use bower installcommand to install all the front-end modules needed for the application
$ bower install
Preview the app (with Livereload).
$ grunt serve
Run the unit tests for the app.
$ grunt test
Build an optimized, production-ready version of your app to dist
folder.
$ grunt build