The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Statocles::Help::Setup - A guide to setting up a new Statocles site

VERSION

version 0.025

DESCRIPTION

This document describes how to set up a simple blog web site suitable to be deployed to GitHub Pages using Statocles.

site.yml - The Main Configuration File

Statocles uses Beam::Wire, a dependency-injection module, to define its configuration. The format is YAML and contains the data needed to build the objects: Arguments to the object's constructor. This means that any ATTRIBUTES defined in the documentation can be used in the configuration file.

The configuration file is, by default, called site.yml. See the statocles command documentation if you want to have multiple site configuration files.

A Theme

First, we'll start by defining a theme. A theme (Statocles::Theme) builds and parses templates into Statocles::Template objects. We'll use the Statocles default theme, included with the module. The special ::default string will look in the Statocles share/theme directory.

A Source

Statocles takes simple, YAML-and-Markdown-formatted document files and builds HTML pages out of them.

So we need a place to put our source documents. A store fills multiple roles relating to reading and writing files. Right now, we need it to hold on to our blog posts. We'll put our blog posts in the blog directory.

The blog application will use this store to add new blog posts and build web pages from the documents in the blog directory. More on that later.

An App

A Statocles app is the driver that turns documents into pages. To build pages, we need a theme and a store full of documents.

Since we're building a blog site, we'll use the Statocles blog app:

    blog_app:
        class: Statocles::App::Blog
        args:
            url_root: /blog
            theme: '::default'
            store: 'blog'

We put our blog app under the root URL /blog. All pages that come from this app will start with /blog (except the index page, we'll move that to /index.html).

We define our theme with the string ::default, which will get magically coerced into a theme object. We define our store with the string blog, which will get magically coerced into a store object.

One of the most useful things about using a dependency injection module is that you can easily plug-in your own classes. If you want to use your own template format, you can build your own Statocles::Theme class that provides a different kind of Statocles::Template object and use that instead. If you want to use your own document format, you can make your own Statocles::Store class that reads from a database.

A Destination

Before we can generate pages, we need a place to put them. Statocles needs two places, a build directory (a staging area), and a deploy directory (the final destination for the site).

For our site, we've got a build directory for our staging area, where we can verify that our site looks correct before we deploy. Our deploy will happen in the root directory of our site (.). This is good for a GitHub Pages site.

Though stores are usually just directories, they could also perform an SFTP or FTP or transfer the pages to a CDN (I think I have some evolution to do here).

A Site

Now that we're ready, we can tie it all together. A site is a collection of apps that build and deploy to the same place. The special git site knows how to deploy to git repositories.

    site:
        class: Statocles::Site::Git
        args:
            apps:
                blog:
                    $ref: blog_app
            build_store: 'build'
            deploy_store: '.'
            deploy_branch: master
            title: My Site
            index: blog
            nav:
                main:
                    - title: Blog
                      href: /index.html

When adding apps to our site, we give them a name (in this case blog) so that we can refer to them on the command-line (later).

Just like the blog store, the build_store and deploy_store will magically create a Statocles::Store object from the path string.

The git branch we want to deploy to is master. As part of the default template, we can provide a site title.

The index attribute gives the name of the app to use as our index page. Since we only have one app, we can only give it the blog. Whatever main page the blog app defines will be moved to the main site index /index.html.

Finally, we can define a nav list, again giving a name: main. The default template uses the main nav across the top.

The Complete site.yml

Combine it all together and you get this. Feel free to copy and paste to start your own site.

    blog_app:
        class: Statocles::App::Blog
        args:
            url_root: /blog
            theme: '::default'
            store: 'blog'
    site:
        class: Statocles::Site::Git
        args:
            apps:
                blog:
                    $ref: blog_app
            build_store: 'build'
            deploy_store: '.'
            title: My Site
            index: blog
            nav:
                main:
                    - title: Blog
                      href: /index.html

The statocles Command

Now that we have a site.yml, we can run the statocles command to manage our site.

Initialize Your Git Repo

    $ git init
    $ git remote add origin ssh://git@github.com/preaction/preaction.github.io

Before we can get going, we need to create our git repository.

NOTE: In the future I plan to include this as a statocles create command.

Create A Blog Post

Remember when we gave our blog app a name? Now we can use that name to access the blog's command-line commands. To create a new blog post, we can use the post command:

    $ statocles blog post My First Post
    New post at: blog/2014/06/04/my-first-post.yml

Everything after post will be used as the title of the post.

If you have the EDITOR environment variable set, your editor will automatically open on the newly-created document.

Build The Site

    $ statocles build

Running the build command will write all our pages to the build store, which points to the build directory. We can open up this directory and look at the files to make sure that our deploy will be correct.

Test The Site

    $ statocles daemon
    Listening on http://*:3000

Run the daemon command to start an HTTP server to view your built site. If you edit any content, running build again will update the site.

Commit Your Changes

    $ git add blog/2014/06/04/my-first-post.yml
    $ git commit -m'My first post'

Once the build looks good, we'll want to commit our changes. The major feature of having a website in a git repository is change tracking.

Deploy The Site

    $ statocles deploy

Running the deploy command will, in the case of the git site, commit the updated pages to the git repository. deploy will try to do a git push automatically, so your changes are now live on Github Pages!

AUTHOR

Doug Bell <preaction@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2014 by Doug Bell.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.