Getting started

Quickstart

Get started quickly with Perron by adding it to your existing Rails app or start a new (static) site.

An existing app

Start by adding Perron:

bundle add perron

Then generate the initializer:

rails generate perron:install

This creates an initializer:

Perron.configure do |config|
  config.site_name = "Helptail"

  #end

A new site

Start a new Perron-based site by running this command:

rails new MyNewSite --minimal -T -O -m https://perron.railsdesigner.com/resources/new/template.rb

Read more about this snippet.

Edit this page