An open API service indexing awesome lists of open source software.

https://github.com/flight/mc

Sample html + css
https://github.com/flight/mc

Last synced: 3 months ago
JSON representation

Sample html + css

Awesome Lists containing this project

README

          

# MC [![Build Status](https://travis-ci.org/Flight/mc.svg?branch=master)](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
```