Mercurial > piecrust2
comparison README.rst @ 9:8f7ba2c95025
Add packaging and related files.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Sat, 16 Aug 2014 23:30:26 -0700 |
parents | |
children | 742009d964ef |
comparison
equal
deleted
inserted
replaced
8:ff07f6d23450 | 9:8f7ba2c95025 |
---|---|
1 | |
2 PieCrust is a static website generator and lightweight CMS that's all managed | |
3 with text files. No complex setup, databases, or administrative panels. | |
4 Simple, beautiful, and yummy. | |
5 | |
6 For more information, along with the complete documentation, visit `the | |
7 official website`_. | |
8 | |
9 .. _the official website: http://bolt80.com/piecrust/ | |
10 | |
11 | |
12 Quickstart | |
13 ========== | |
14 | |
15 If you want to quickly give it a spin: | |
16 | |
17 :: | |
18 | |
19 bin/chef init mywebsite | |
20 cd mywebsite | |
21 ../bin/chef serve | |
22 | |
23 It should create a new empty site in a ``mywebsite`` folder, and then start | |
24 your default browser to show it to you. Use ``chef prepare page`` and ``chef | |
25 prepare post`` to create pages and posts, and edit those in your favorite text | |
26 editor. | |
27 | |
28 When you're happy, run ``../bin/chef bake`` to generate the final static | |
29 website, which you'll find in ``_counter``. | |
30 | |
31 | |
32 Changes | |
33 ======= | |
34 | |
35 Check out the CHANGELOG file for new features, bug fixes and breaking changes. | |
36 |