Brak opisu

darkrubyist ce69db531a Add Rails 5.2 Version to Friendly Id Migration (#51) 6 lat temu
app 43ba3d16f2 Update notification.rb 6 lat temu
config 10cf0a4337 Add masquerading 6 lat temu
lib 63d6cd3bd0 Add some basic scaffold overrides that use Bootstrap 6 lat temu
.gitignore 806c45d49f Ignore DS_Store 7 lat temu
LICENSE 4afd959fff Create LICENSE (#31) 6 lat temu
Procfile b24e7c435b Refactor a bit. Adds Sidekiq, Webpacker, and Foreman. 7 lat temu
README.md ddced9025b Update README.md 6 lat temu
template.rb ce69db531a Add Rails 5.2 Version to Friendly Id Migration (#51) 6 lat temu

README.md

Rails Jumpstart

It's like Laravel Spark, for Rails. All your Rails apps should start off with a bunch of great defaults.

Note: Requires Rails 5.2

Getting Started

Jumpstart is a Rails template, so you pass it in as an option when creating a new app.

Creating a new app

rails new myapp -d postgresql -m https://raw.githubusercontent.com/excid3/jumpstart/master/template.rb

Or if you have downloaded this repo, you can reference template.rb locally:

rails new myapp -d postgresql -m template.rb

Cleaning up

rails db:drop
spring stop
cd ..
rm -rf myapp