aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTristan Sloughter <[email protected]>2013-03-24 10:11:53 -0700
committerTristan Sloughter <[email protected]>2013-03-24 10:11:53 -0700
commit5b1a4ce7b950c83b6c26d9292685de99aa3c9d92 (patch)
treed2132bf4dfe1f69f4a1a286249f0ab90557893dc
parent9bee979fc06578ff003cfeeb3d3e9d9cd02551c6 (diff)
downloadrelx-5b1a4ce7b950c83b6c26d9292685de99aa3c9d92.tar.gz
relx-5b1a4ce7b950c83b6c26d9292685de99aa3c9d92.tar.bz2
relx-5b1a4ce7b950c83b6c26d9292685de99aa3c9d92.zip
Create gh-pages branch via GitHub
-rw-r--r--index.html38
-rw-r--r--params.json2
2 files changed, 19 insertions, 21 deletions
diff --git a/index.html b/index.html
index ec0af1c..a1b197d 100644
--- a/index.html
+++ b/index.html
@@ -31,32 +31,30 @@
<hr>
<section id="main_content">
- <h3>Welcome to GitHub Pages.</h3>
+ <p>Reltool assembles releases for an Erlang/OTP release. Given a release specification and a list of directories in which to search for OTP applications it will generate a release output. That output depends heavily on what plugins available and what options are defined, but usually it is simple a well configured release directory.</p>
-<p>This automatic page generator is the easiest way to create beautiful pages for all of your projects. Author your page content here using GitHub Flavored Markdown, select a template crafted by a designer, and publish. After your page is generated, you can check out the new branch:</p>
+<h3>Example Configuration</h3>
-<pre><code>$ cd your_repo_root/repo_name
-$ git fetch origin
-$ git checkout gh-pages
-</code></pre>
-
-<p>If you're using the GitHub for Mac, simply sync your repository and you'll see the new branch.</p>
-
-<h3>Designer Templates</h3>
-
-<p>We've crafted some handsome templates for you to use. Go ahead and continue to layouts to browse through them. You can easily go back to edit your page before publishing. After publishing your page, you can revisit the page generator and switch to another theme. Your Page content will be preserved if it remained markdown format.</p>
+<pre><code>$ git clone https://github.com/tsloughter/erlangdc2013.git
+$ cd erlangdc2013
+$ cat relcool.config
+{release, {erlangdc, "0.0.1"},
+ [estatsd
+ ,erlangdc
+ ,mochiweb
+ ,ibrowse]}.
-<h3>Rather Drive Stick?</h3>
+{extended_start_script, true}.
-<p>If you prefer to not use the automatic generator, push a branch named <code>gh-pages</code> to your repository to create a page manually. In addition to supporting regular HTML content, GitHub Pages support Jekyll, a simple, blog aware static site generator written by our own Tom Preston-Werner. Jekyll makes it easy to create site-wide headers and footers without having to copy them across every page. It also offers intelligent blog support and other advanced templating features.</p>
-
-<h3>Authors and Contributors</h3>
-
-<p>You can <a href="https://github.com/blog/821" class="user-mention">@mention</a> a GitHub username to generate a link to their profile. The resulting <code>&lt;a&gt;</code> element will link to the contributor's GitHub Profile. For example: In 2007, Chris Wanstrath (<a href="https://github.com/defunkt" class="user-mention">@defunkt</a>), PJ Hyett (<a href="https://github.com/pjhyett" class="user-mention">@pjhyett</a>), and Tom Preston-Werner (<a href="https://github.com/mojombo" class="user-mention">@mojombo</a>) founded GitHub.</p>
+$ ./relcool
+...
+$ ls _rel/
+bin erts-5.10.1 lib log releases
+</code></pre>
-<h3>Support or Contact</h3>
+<h3>Documentation</h3>
-<p>Having trouble with Pages? Check out the documentation at <a href="http://help.github.com/pages">http://help.github.com/pages</a> or contact <a href="mailto:[email protected]">[email protected]</a> and we’ll help you sort it out.</p>
+<p><a href="https://github.com/erlware/relcool/wiki">relcool wiki</a></p>
</section>
<footer>
diff --git a/params.json b/params.json
index 161cd81..375d7a9 100644
--- a/params.json
+++ b/params.json
@@ -1 +1 @@
-{"name":"Relcool","tagline":"Release creation for Erlang","body":"### Welcome to GitHub Pages.\r\nThis automatic page generator is the easiest way to create beautiful pages for all of your projects. Author your page content here using GitHub Flavored Markdown, select a template crafted by a designer, and publish. After your page is generated, you can check out the new branch:\r\n\r\n```\r\n$ cd your_repo_root/repo_name\r\n$ git fetch origin\r\n$ git checkout gh-pages\r\n```\r\n\r\nIf you're using the GitHub for Mac, simply sync your repository and you'll see the new branch.\r\n\r\n### Designer Templates\r\nWe've crafted some handsome templates for you to use. Go ahead and continue to layouts to browse through them. You can easily go back to edit your page before publishing. After publishing your page, you can revisit the page generator and switch to another theme. Your Page content will be preserved if it remained markdown format.\r\n\r\n### Rather Drive Stick?\r\nIf you prefer to not use the automatic generator, push a branch named `gh-pages` to your repository to create a page manually. In addition to supporting regular HTML content, GitHub Pages support Jekyll, a simple, blog aware static site generator written by our own Tom Preston-Werner. Jekyll makes it easy to create site-wide headers and footers without having to copy them across every page. It also offers intelligent blog support and other advanced templating features.\r\n\r\n### Authors and Contributors\r\nYou can @mention a GitHub username to generate a link to their profile. The resulting `<a>` element will link to the contributor's GitHub Profile. For example: In 2007, Chris Wanstrath (@defunkt), PJ Hyett (@pjhyett), and Tom Preston-Werner (@mojombo) founded GitHub.\r\n\r\n### Support or Contact\r\nHaving trouble with Pages? Check out the documentation at http://help.github.com/pages or contact [email protected] and we’ll help you sort it out.","google":"","note":"Don't delete this file! It's used internally to help with page regeneration."} \ No newline at end of file
+{"name":"Relcool","tagline":"Release creation for Erlang","body":"Reltool assembles releases for an Erlang/OTP release. Given a release specification and a list of directories in which to search for OTP applications it will generate a release output. That output depends heavily on what plugins available and what options are defined, but usually it is simple a well configured release directory.\r\n\r\n### Example Configuration\r\n\r\n```\r\n$ git clone https://github.com/tsloughter/erlangdc2013.git\r\n$ cd erlangdc2013\r\n$ cat relcool.config\r\n{release, {erlangdc, \"0.0.1\"},\r\n [estatsd\r\n ,erlangdc\r\n ,mochiweb\r\n ,ibrowse]}.\r\n\r\n{extended_start_script, true}.\r\n\r\n$ ./relcool\r\n...\r\n$ ls _rel/\r\nbin erts-5.10.1 lib log releases\r\n```\r\n\r\n### Documentation\r\n\r\n[relcool wiki](https://github.com/erlware/relcool/wiki)","google":"","note":"Don't delete this file! It's used internally to help with page regeneration."} \ No newline at end of file