Ingen beskrivning

ANX ef810c8e03 fix: readme 5 år sedan
app ef810c8e03 fix: readme 5 år sedan
config e104460102 Initial Commit 5 år sedan
lib e104460102 Initial Commit 5 år sedan
.gitignore e104460102 Initial Commit 5 år sedan
LICENSE e104460102 Initial Commit 5 år sedan
Procfile e104460102 Initial Commit 5 år sedan
README.md ef810c8e03 fix: readme 5 år sedan
template.rb ef810c8e03 fix: readme 5 år sedan

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.

Requirements

You'll need the following installed to run the template successfully:

  • Ruby 2.5+
  • bundler - gem install bundler
  • rails - gem install rails
  • Yarn - brew install yarn or Install Yarn

Creating a new app

rails new myapp -d postgresql -m http://gogs.anxgang.com/Hiskio/jumpstart/raw/master/template.rb --skip-coffee --skip-test

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

rails new myapp -d postgresql -m template.rb --skip-coffee --skip-test

Cleaning up

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