Project

kratos

0.0
No commit activity in last 3 years
No release in over 3 years
Kratos is a rails project generator that is ready for deployment with capistrano. Based on thoughtbot's "suspenders".
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

~> 1.3
~> 4.2.0
 Project Readme

Kratos

Kratos is a rails application generator based on Suspenders.

Installation

First install the kratos gem:

gem install kratos

Then run:

kratos projectname

This will create a Rails app in projectname using the latest version of Rails.

After run, you must configure:

  • Change the sidekiq panel password in the config/initializers/sidekiq.rb file. The panel is accessible by the URL /sidekiq.
  • Setup your development environment variables: NEW_RELIC_LICENSE_KEY, ROLLBAR_TOKEN, AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY
  • Setup your production and staging environment variables using dotgpg. You must create two files on the root of your project: env_production.gpg and env_staging.gpg. To initialize dotgpg on your project run dotgpg init. It'll create a .gpg folder and add your public key to it. To edit the files, use the dotgpg edit env_<environment>.gpg command. For more information look at the DotGPG.
  • Run bin/setup to initialize your database and files.

License

Suspenders is Copyright © 2008-2015 thoughtbot. It is free software, and may be redistributed under the terms specified in the LICENSE file.