update readme
parent
ac69a3acba
commit
e292223165
18
README.md
18
README.md
|
@ -1,13 +1,13 @@
|
|||
# caddy-cms
|
||||
# caddy-hugo
|
||||
|
||||
[![Build](https://img.shields.io/travis/hacdias/caddy-cms.svg?style=flat-square)](https://travis-ci.org/hacdias/caddy-cms)
|
||||
[![Documentation](https://img.shields.io/badge/godoc-reference-blue.svg?style=flat-square)](http://godoc.org/github.com/hacdias/caddy-cms)
|
||||
[![Build](https://img.shields.io/travis/hacdias/caddy-hugo.svg?style=flat-square)](https://travis-ci.org/hacdias/caddy-hugo)
|
||||
[![Documentation](https://img.shields.io/badge/godoc-reference-blue.svg?style=flat-square)](http://godoc.org/github.com/hacdias/caddy-hugo)
|
||||
|
||||
Powerful and easy static site generator with admin interface. By default it uses [Hugo](http://gohugo.io/) (and you don't need to install it separately) but you can use whatever you want.
|
||||
Powerful and easy static site generator with admin interface with [Hugo](http://gohugo.io/) (and you don't need to install it separately).
|
||||
|
||||
## Build it from source
|
||||
|
||||
If you want to try caddy-cms plugin (and improve it maybe), you'll have to install some tools.
|
||||
If you want to try caddy-hugo plugin (and improve it maybe), you'll have to install some tools.
|
||||
|
||||
+ [Go 1.4 or higher](https://golang.org/dl/)
|
||||
+ [caddydev](https://github.com/caddyserver/caddydev)
|
||||
|
@ -22,7 +22,7 @@ If you want to go deeper and make changes in front-end assets like JavaScript or
|
|||
|
||||
### Run it
|
||||
|
||||
If you have already installed everything above to meet the requirements for what you want to do, let's start. Firstly, open the terminal and navigate to your clone of ```caddy-cms```. Then execute:
|
||||
If you have already installed everything above to meet the requirements for what you want to do, let's start. Firstly, open the terminal and navigate to your clone of ```caddy-hugo```. Then execute:
|
||||
|
||||
```
|
||||
go-bindata [-debug] -pkg assets -o assets/assets.go templates/ assets/css/ assets/js/ assets/fonts/
|
||||
|
@ -32,14 +32,14 @@ That command will create an ```assets.go``` file which contains all static files
|
|||
|
||||
Now, open the folder with your static website and create a Caddyfile. Read the [docs](http://caddyserver.com/docs/cms) for more information about the directives of this plugin.
|
||||
|
||||
After creating the file, navigate to that folder using the terminal and run the following command, replacing ```{caddy-cms}``` with the location of your clone.
|
||||
After creating the file, navigate to that folder using the terminal and run the following command, replacing ```{caddy-hugo}``` with the location of your clone.
|
||||
|
||||
```
|
||||
caddydev --source {caddy-cms} hugo
|
||||
caddydev --source {caddy-hugo} hugo
|
||||
```
|
||||
|
||||
Navigate to the url you set on Caddyfile to see your blog running on Caddy and Hugo. Go to ```/admin``` to try the Admin UI.
|
||||
|
||||
Everything is working now. Whenever you make a change in the back-end source code, you'll have to run the command above again.
|
||||
|
||||
**For those who want to make changes in front-end**, make sure you have every needed tool installed and run ```npm install``` in the root of ```caddy-cms``` clone. Then, run ```grunt watch```.
|
||||
**For those who want to make changes in front-end**, make sure you have every needed tool installed and run ```npm install``` in the root of ```caddy-hugo``` clone. Then, run ```grunt watch```.
|
||||
|
|
Loading…
Reference in New Issue