If you want to modify the appearance of alphawing, you need to build JavaScript and CSS.
| Path | Roll |
|---|---|
/static/_src |
front-end source root |
/static/_src/sass |
Sass(.scss) files |
/static/_src/js |
JavaScript source files |
/static/_src/Gruntfile.js |
Grunt config file |
You should get Compass & Grunt for front-end development.
# Grunt
$ node -v
$ npm install -g grunt-cli
# Compass (Sass)
$ ruby -v
$ gem install compass
# npm modules
$ cd static/_src
$ npm installRun grunt in order to build SCSS and optimize JavaScript.
$ cd staitc/_src
$ gruntYou can use the watch task that automatically runs build on the file changes under /static/_src.
$ cd staitc/_src
$ grunt watch