https://github.com/brendanzab/git-workshop-2015-08
https://github.com/brendanzab/git-workshop-2015-08
Last synced: 14 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/brendanzab/git-workshop-2015-08
- Owner: brendanzab
- Created: 2015-06-29T11:01:52.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-08-19T08:11:38.000Z (over 10 years ago)
- Last Synced: 2025-01-20T00:55:36.065Z (12 months ago)
- Language: HTML
- Homepage: https://bjz.github.io/git-workshop-2015-08
- Size: 529 KB
- Stars: 0
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# git-workshop-2015-08
Homepage: [bjz.github.io/git-workshop-2015-08](https://bjz.github.io/git-workshop-2015-08)
## Development
### Prerequisites
- [elm](http://elm-lang.org)
- [npm](https://github.com/joyent/node/wiki/Installing-Node.js-via-package-manager)
- [gulp](http://gulpjs.com) (`npm install --global gulp`)
### Setting up the project
Clone the repository:
```
git clone https://github.com/bjz/git-workshop-2015-08.git
cd git-workshop-2015-08
```
Install the javascript dependencies:
```
npm install
```
### Running the watcher
```
gulp watch
```
If you edit the pages within `./src`, they will automatically rebuilt to `./tmp` by `gulp-watch`. You can view the resulting website at `./tmp/index.html`.
Press `ctrl + C` to stop watching.
### Deployment to Github Pages
```
gulp deploy
```