diff options
author | Steve Manuel <nilslice@gmail.com> | 2018-01-21 11:04:06 -0700 |
---|---|---|
committer | Steve Manuel <nilslice@gmail.com> | 2018-01-21 11:04:06 -0700 |
commit | ff3c0f6bcb9d6477d386057dca1b54037b424ddf (patch) | |
tree | b8b2de61179c3ab4d472b0cc746a734d74502f44 | |
parent | a1156d5c6dbedaeb5cf3b737eb65ca01c9103d42 (diff) | |
parent | 1d1ef4785a702274fb4aae62e56203ea4740793d (diff) |
Merge branch 'ponzu-dev'
-rw-r--r-- | README.md | 20 | ||||
-rw-r--r-- | docs/src/Quickstart/Overview.md | 2 |
2 files changed, 12 insertions, 10 deletions
@@ -32,16 +32,18 @@ $ ponzu gen content song title:"string" artist:"string" rating:"int" opinion:"st **What's inside** -- Automatic & Free SSL/TLS* -- HTTP/2 and Server Push -- Rapid development with CLI-controlled code generators -- User-friendly, extensible CMS and administration dashboard -- Simple deployment - single binary + assets, embedded DB ([BoltDB](https://github.com/boltdb/bolt)) -- Fast, helpful framework while maintaining control - -*TLS: +- Automatic & Free SSL/TLS<sup id="a1">[1](#f1)</sup> +- HTTP/2 and Server Push +- Rapid development with CLI-controlled code generators +- User-friendly, extensible CMS and administration dashboard +- Simple deployment - single binary + assets, embedded DB ([BoltDB](https://github.com/boltdb/bolt)) +- Fast, helpful framework while maintaining control + +<sup id="f1">1</sup> *TLS*: - Development: self-signed certificates auto-generated -- Production: auto-renewing certificates fetched from [Let's Encrypt](https://letsencrypt.org) +- Production: auto-renewing certificates fetched from [Let's Encrypt](https://letsencrypt.org) + +[↩](#a1) ## Documentation For more detailed documentation, check out the [docs](https://docs.ponzu-cms.org) diff --git a/docs/src/Quickstart/Overview.md b/docs/src/Quickstart/Overview.md index 6c4bec5..329a0f7 100644 --- a/docs/src/Quickstart/Overview.md +++ b/docs/src/Quickstart/Overview.md @@ -18,7 +18,7 @@ $ cd $GOPATH/src/github.com/nilslice/reviews 5) Generate content type file and boilerplate code (creates `content/review.go`): ```bash -$ ponzu generate content review title:"string" author:"string" rating:"float64" body:"string":richtext website_url:"string" items:"[]string" photo:string:file` +$ ponzu generate content review title:"string" author:"string" rating:"float64" body:"string":richtext website_url:"string" items:"[]string" photo:string:file ``` 6) Build your project: |