From fa40247c2f1fd263832bf581c639725463ad2b87 Mon Sep 17 00:00:00 2001 From: "Rafael G. Martins" Date: Mon, 15 Feb 2016 01:31:44 +0100 Subject: README: move tests to jenkins --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'README.md') diff --git a/README.md b/README.md index f675267..3622739 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # blogc -[![Build Status](https://semaphoreci.com/api/v1/projects/bd67545c-8593-4a37-ba94-ef1187a6d58d/402577/badge.svg)](https://semaphoreci.com/blogc/blogc) +[![Build Status](https://jenkins.rgm.io/buildStatus/icon?job=blogc-tests)](https://jenkins.rgm.io/job/blogc-tests/) A blog compiler. -- cgit v1.2.3-18-g5258 From cf97bd1b2d86eb2e8db5c41b0999680e9e41135d Mon Sep 17 00:00:00 2001 From: "Rafael G. Martins" Date: Fri, 26 Feb 2016 01:48:29 +0100 Subject: readme: minor fix --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'README.md') diff --git a/README.md b/README.md index 3622739..d005fb5 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ A blog compiler. ## Quickstart -Clone the [Git repository](https://github.com/blogc/blogc) or grab the [latest release](https://github.com/blogc/blogc/releases) and extract it. +Clone the [Git repository](https://github.com/blogc/blogc) (using `--recursive` to get the submodules) or grab the [latest release](https://github.com/blogc/blogc/releases) and extract it. Inside the source directory, run the following commands: -- cgit v1.2.3-18-g5258 From 9d11a1781e47d64eb8ba2f8ad6f5ab6927e0c989 Mon Sep 17 00:00:00 2001 From: "Rafael G. Martins" Date: Wed, 9 Mar 2016 03:26:19 +0100 Subject: readme: added travis badge --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'README.md') diff --git a/README.md b/README.md index d005fb5..cce4fc4 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # blogc -[![Build Status](https://jenkins.rgm.io/buildStatus/icon?job=blogc-tests)](https://jenkins.rgm.io/job/blogc-tests/) +[![Build Status](https://travis-ci.org/blogc/blogc.svg?branch=master)](https://travis-ci.org/blogc/blogc) A blog compiler. -- cgit v1.2.3-18-g5258 From 8228eff55065858c73bea00e643b7f7f81e14ace Mon Sep 17 00:00:00 2001 From: "Rafael G. Martins" Date: Wed, 27 Apr 2016 21:30:58 +0200 Subject: fixed readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'README.md') diff --git a/README.md b/README.md index cce4fc4..4450099 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ A blog compiler. ## Quickstart -Clone the [Git repository](https://github.com/blogc/blogc) (using `--recursive` to get the submodules) or grab the [latest release](https://github.com/blogc/blogc/releases) and extract it. +Clone the [Git repository](https://github.com/blogc/blogc) or grab the [latest release](https://github.com/blogc/blogc/releases) and extract it. Inside the source directory, run the following commands: -- cgit v1.2.3-18-g5258 From 8f1f1388f163ab396a5e8a8f9c8f2a49346bc0fd Mon Sep 17 00:00:00 2001 From: "Rafael G. Martins" Date: Fri, 29 Apr 2016 02:06:26 +0200 Subject: updated readme --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'README.md') diff --git a/README.md b/README.md index 4450099..bd27cae 100644 --- a/README.md +++ b/README.md @@ -12,10 +12,12 @@ Clone the [Git repository](https://github.com/blogc/blogc) or grab the [latest r Inside the source directory, run the following commands: $ ./autogen.sh # if installing from git - $ ./configure + $ ./configure [--enable-git-receiver] [--enable-runserver] $ make # make install +The `./configure` options listed above will enable building of helper tools. To learn more about these tools, please read the man pages. + To create your first blog, please clone our example repository and adapt it to your needs: $ git clone https://github.com/blogc/blogc-example my-blog -- cgit v1.2.3-18-g5258 From 82035fc222e8f7cb63c9573d5e9c7b5fea9d1943 Mon Sep 17 00:00:00 2001 From: "Rafael G. Martins" Date: Fri, 29 Apr 2016 04:43:48 +0200 Subject: updated readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'README.md') diff --git a/README.md b/README.md index bd27cae..d5b968e 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ To create your first blog, please clone our example repository and adapt it to y $ git init $ git commit -am 'initial commit' -At this point you'll have an empty blog, that can be customized to suit your needs. You'll want to look at the 'post/' directory and edit your first post. Each new post, template or asset must be added to the Makefile. Please read it carefully. +At this point you'll have an empty blog, that can be customized to suit your needs. You'll want to look at the `content/post/` directory and edit your first post. Each new post, template or asset must be added to the `Makefile`. Please read it carefully. If some unexpected error happened, please [file an issue](https://github.com/blogc/blogc/issues/new). -- cgit v1.2.3-18-g5258