https://github.com/flight/mc
Sample html + css
https://github.com/flight/mc
Last synced: 3 months ago
JSON representation
Sample html + css
- Host: GitHub
- URL: https://github.com/flight/mc
- Owner: Flight
- Created: 2017-02-11T22:48:30.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-02-22T22:14:37.000Z (over 9 years ago)
- Last Synced: 2026-03-27T23:41:54.513Z (3 months ago)
- Language: HTML
- Homepage: https://flight.github.io/mc/specific-opp.html
- Size: 2.27 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Support: support-article.html
Awesome Lists containing this project
README
# MC [](https://travis-ci.org/Flight/mc)
## Quick start for developers
Project uses node + Gulp for fast developing.
To install node: https://nodejs.org/en/
Then open your favorite Terminal and run these commands.
```sh
$ npm install --global gulp-cli
$ npm install
```
To watch everything (js + scss):
```sh
$ gulp watch
```
To run code linting (js + scss):
```sh
$ gulp
```
To compile scss:
```sh
$ gulp scss
```
To run webserver with livereload:
```sh
$ gulp webserver
```