1
0
mirror of https://github.com/labstack/echo.git synced 2025-01-24 03:16:14 +02:00

Added gulp to website

Signed-off-by: Vishal Rana <vr@labstack.com>
This commit is contained in:
Vishal Rana 2015-04-18 22:27:30 -07:00
parent 566ed78c1e
commit 54824fc22f
4 changed files with 21 additions and 0 deletions

4
.gitignore vendored
View File

@ -25,3 +25,7 @@ _testmain.go
# Website
site/
.publish/
# Node.js
node_modules/

View File

@ -153,3 +153,7 @@ func main() {
e.Run(":4444")
}
```
## License
[MIT](https://github.com/labstack/echo/blob/master/LICENSE)

7
website/gulpfile.js Normal file
View File

@ -0,0 +1,7 @@
var gulp = require('gulp');
var ghPages = require('gulp-gh-pages');
gulp.task('deploy', function() {
return gulp.src('./site/**/*')
.pipe(ghPages());
});

6
website/package.json Normal file
View File

@ -0,0 +1,6 @@
{
"devDependencies": {
"gulp": "^3.8.11",
"gulp-gh-pages": "^0.5.1"
}
}