A blog application on Rails 4 under Ruby 2, using Kramdown for markdown support.
- Easier access to admin functionality
- Styling/theming
-
Install application & dependencies
git clone git://github.com/ctreatma/blarg.git cd blarg bundle install rake db:migrate
-
Set the
BLARG_SECRET_KEY
environment variable. It must be at least 30 characters long. -
Run
rails c
to create the admin useru = User.new(email: '<email>', password: '<password>') u.name = '<name>' u.about_url = '<url to about/home page>' # optional u.save