1
0
mirror of https://github.com/gohugoio/hugo.git synced 2024-05-11 05:54:58 +00:00

Adding community section to the documentation

This commit is contained in:
spf13
2013-12-10 19:38:52 -05:00
parent ceb708052a
commit dd574628a0
7 changed files with 87 additions and 9 deletions

View File

@@ -1,47 +0,0 @@
---
title: "Contributing to Hugo"
date: "2013-07-01"
aliases: ["/doc/contributing/"]
groups: ["meta"]
groups_weight: 30
---
We welcome all contributions. If you want to contribute, all
that is needed is simply fork Hugo, make changes and submit
a pull request. If you prefer, pick something from the roadmap
or contact [spf13](http://spf13.com) about what may make sense
to do next.
## Overview
1. Fork it from https://github.com/spf13/hugo
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request
### Clone locally (for contributors):
git clone https://github.com/spf13/hugo
cd hugo
go get
Because go expects all of your libraries to be found in either
$GOROOT or $GOPATH, it's helpful to symlink the project to one
of the following paths:
* ln -s /path/to/your/hugo $GOPATH/src/github.com/spf13/hugo
* ln -s /path/to/your/hugo $GOROOT/src/pkg/github.com/spf13/hugo
### Running Hugo
cd /path/to/hugo
go install github.com/spf13/hugo/hugolibs
go run main.go
### Building Hugo
cd /path/to/hugo
go build -o hugo main.go
mv hugo /usr/local/bin/

View File

@@ -1,14 +0,0 @@
---
title: "Contributors"
date: "2013-07-01"
aliases: ["/doc/contributors/"]
groups: ["meta"]
groups_weight: 40
---
Hugo was built with love and golang by:
* Steve Francia - [spf13](https://github.com/spf13)
* Noah Campbell - [noahcampbell](https://github.com/noahcampbell)
* [Many more](http://github.com/spf13/hugo/graphs/contributors)