From 78de7ed98abff93fe5fef94907bcfa4f76dcef07 Mon Sep 17 00:00:00 2001 From: Steve Manuel Date: Sat, 27 May 2017 10:27:51 -0700 Subject: adding docs to repo --- docs/build/Quickstart/Overview/index.html | 932 ++++++++++++++++++++++++++++++ 1 file changed, 932 insertions(+) create mode 100644 docs/build/Quickstart/Overview/index.html (limited to 'docs/build/Quickstart') diff --git a/docs/build/Quickstart/Overview/index.html b/docs/build/Quickstart/Overview/index.html new file mode 100644 index 0000000..fe023d6 --- /dev/null +++ b/docs/build/Quickstart/Overview/index.html @@ -0,0 +1,932 @@ + + + + + + + + + + + + + + + + + + Overview - Ponzu + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+ + +
+
+ + +
+
+
+ +
+
+
+ + +
+
+
+ + +
+
+
+ + +
+
+ + + +

Overview

+ +

Quickstart Steps

+

1) Install Go 1.8+

+

2) Install Ponzu CLI:

+
$ go get github.com/ponzu-cms/ponzu/…
+
+ + +

3) Create a new project (path is created in your GOPATH):

+
$ ponzu new github.com/nilslice/reviews
+
+ + +

4) Enter your new project directory:

+
$ cd $GOPATH/src/github.com/nilslice/reviews
+
+ + +

5) Generate content type file and boilerplate code (creates content/review.go):

+
$ 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:

+
$ ponzu build
+
+ + +

7) Run your project with defaults:

+
$ ponzu run
+
+ + +

8) Open browser to http://localhost:8080/admin

+

Notes

+
    +
  • One-time initialization to set configuration
  • +
  • All fields can be changed in Configuration afterward
  • +
+ + + + + + + +
+
+
+
+ + + + +
+ + + + + + + + + + + + \ No newline at end of file -- cgit v1.2.3