$ flipflop create
prompt: Blog title: My Blog
prompt: Blog description: This my blog site
prompt: May I create your blog @ "/Users/inouetomoyuki/Projects/node/my-blog"?: yes
my-blog というディレクトリが作成されます。早速起動してみます。
$ cd my-blog
$ flipflop start
/Users/inouetomoyuki/Projects/node/my-blog/articles
info: http server listening. port=8080
# flipflop
## サンダルを履くようにブログを作成しよう
+ **[markdown][]** - 記事をMarkdown形式で記述できます。
+ **[jade][]** - テーマをJadeテンプレートと[less][]でカスタマイズできます。
+ run it from a [node.js http server](#start-er-up), or [generate a static site](#static-sites-are-hawt) that you can host pretty much anywhere and not worry about dependencies.
---
## インストールする
**flipflop** はグローバルインストールすることでcliを提供します。
```
> npm install -g flipflop
```
## 新しいブログを作成する
```
> flipflop create
```
This starts a cli app that will prompt for a few bits of info about your blog, and create a directory for it in the `process.cwd()`.
## 起動する
Make sure you're inside your blog's directory.
```
> flipflop start <port>
```
check your browser @ `http://localhost:8080`
+ port is optional, defaults to 8080