You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@predictionio.apache.org by do...@apache.org on 2016/08/11 17:14:34 UTC

[3/5] incubator-predictionio git commit: Fix postgres code highlight

Fix postgres code highlight


Project: http://git-wip-us.apache.org/repos/asf/incubator-predictionio/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-predictionio/commit/8b8b38b9
Tree: http://git-wip-us.apache.org/repos/asf/incubator-predictionio/tree/8b8b38b9
Diff: http://git-wip-us.apache.org/repos/asf/incubator-predictionio/diff/8b8b38b9

Branch: refs/heads/develop
Commit: 8b8b38b9096b0dd478c1e5192af9c78899fd9b9c
Parents: e885915
Author: Shane Auckland <sh...@gmail.com>
Authored: Tue Apr 12 14:58:52 2016 +0100
Committer: hyukjinkwon <gu...@gmail.com>
Committed: Wed Aug 10 11:05:16 2016 +0900

----------------------------------------------------------------------
 .../source/partials/shared/install/_postgres.html.erb   | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-predictionio/blob/8b8b38b9/docs/manual/source/partials/shared/install/_postgres.html.erb
----------------------------------------------------------------------
diff --git a/docs/manual/source/partials/shared/install/_postgres.html.erb b/docs/manual/source/partials/shared/install/_postgres.html.erb
index 15c6024..4901a5c 100644
--- a/docs/manual/source/partials/shared/install/_postgres.html.erb
+++ b/docs/manual/source/partials/shared/install/_postgres.html.erb
@@ -12,14 +12,20 @@ apt-get install postgresql-9.4
 
 Now that PostgreSQL is installed use the following comands
 
-`$ createdb pio`
+```
+$ createdb pio
+``` 
 
 If you get an error of the form `could not connect to server: No such file or directory`, then you must first start the server manually,:
 
-`$ pg_ctl -D /usr/local/var/postgres -l /usr/local/var/postgres/server.log start`
+```
+$ pg_ctl -D /usr/local/var/postgres -l /usr/local/var/postgres/server.log start
+```
 
 Finally use the command:
 
-`$ psql -c "create user pio with password 'pio'"
+```
+$ psql -c "create user pio with password 'pio'"
+```
 
 Your configuration  in `pio-env.sh` is now compatible to run with PostgreSQL.