https://github.com/flight/kfc
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/flight/kfc
- Owner: Flight
- License: other
- Created: 2016-04-29T06:48:40.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2016-05-05T09:57:31.000Z (about 10 years ago)
- Last Synced: 2025-07-28T09:44:09.757Z (11 months ago)
- Language: HTML
- Size: 7.92 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: license.html
Awesome Lists containing this project
README
# KFC [](https://travis-ci.org/Flight/kfc)
## 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 run webserver (for running game):
```sh
$ gulp webserver
```
Then go to http://localhost:8000/game.html
To watch everything (js + scss):
```sh
$ gulp watch
```
To run code linting (js + scss):
```sh
$ gulp
```
To compile scss:
```sh
$ gulp scss
```