/sakura

HKT48 宮脇咲良「AKB48 37th 選抜総選挙」応援サイト

Primary LanguageJavaScriptMIT LicenseMIT

HKT48 宮脇咲良「AKB48 37th選抜総選挙」応援サイト

This project is a cheering web page for HKT48 member 宮脇咲良 with 2014 AKB48 第六回選抜総選挙

cover

Build Status

Project Structure

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
 

Development

Install Yeoman http://yeoman.io/

logo

$ npm install -g yo

Install AngularJS Full-Stack generator GitHub

$ npm install -g generator-angular-fullstack

Quick Start

Cloning The GitHub Repository

$ git clone https://github.com/amowu/sakura.git

This will clone the latest version of the project repository to a sakura folder.

$ cd sakura

Quick Install

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

Running Your Application

Preview the app (with Livereload).

$ grunt serve

result

Run the unit tests for the app.

$ grunt test

Deploy Your Application

Build an optimized, production-ready version of your app to dist folder.

$ grunt build

end