Skip to content

MacksMind/opinionated-rails

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
app
 
 
bin
 
 
 
 
db
 
 
 
 
lib
 
 
log
 
 
 
 
 
 
 
 
 
 
 
 
tmp
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

OpinionatedRails

Rails 6 application with these choices:

Background

I used to have a Rails project whose sole purpose was to provide a jumping off point for other Rails projects. Regenerating pieces of it every time one of its dependencies changed was tedious, so I scripted building a new app and dropping in the pieces that don't come from generators.

Contributing

See OpinionatedRailsGenerator

Usage

Heroku Deploy

  • Update db/seeds.rb with your preferred info and git commit the change
  • Install Heroku CLI if you haven't already
  • heroku create [APP]
  • heroku addons:create sendgrid:starter
  • heroku labs:enable runtime-dyno-metadata
  • git push heroku master
  • heroku rake db:fixtures:load db:seed
  • heroku open