BootSaaS
Bootstrap your start up! BootSaaS sets up your application and generates basic layouts to get your app started. Just create a blank rails app, add the gem and follow the installation instructions. Forget about the setup, concentrate on building the meat of your startup.
What it does
- Sets up Bootstrap
- Sets up a static pages controller, layouts, template views and partials for your front facing pages
- Creates a simple home page and a coming soon page
- Adds rails 12 factor gem for assets precompilation on heroku
- Sets up routes for your new pages
- Adds tests!
Installation
Add this line to your application's Gemfile (You may want to fix the version):
gem 'bootsaas'
And then run:
$ bundle
Or install it yourself as:
$ gem install bootsaas
Then run:
rails g bootsaas:install
BootSaaS will create a static pages controller for the front end of your app and a 'coming soon' page to direct signups to. It's all bootstrap so you can hop in and get tweaking straight away! Drop in your google analytics, mailchimp form, and edit the sass for customisation.
With thanks
Thanks to http://startbootstrap.com for the sweet landing page template
Contributing
- Fork it ( https://github.com/[my-github-username]/bootsaas/fork )
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create a new Pull Request with nice documentation of your changes