We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb3470e commit b1ba834Copy full SHA for b1ba834
bin/rails
@@ -0,0 +1,4 @@
1
+#!/usr/bin/env ruby
2
+APP_PATH = File.expand_path('../config/application', __dir__)
3
+require_relative '../config/boot'
4
+require 'rails/commands'
config/application.rb
@@ -2,6 +2,8 @@
Bundler.require
require "rails/all"
5
+abort "No DATABASE_URL" unless ENV["DATABASE_URL"]
6
+
7
module BlazerSolo
8
class Application < Rails::Application
9
routes.append do
config/boot.rb
@@ -0,0 +1,3 @@
+ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__)
+require 'bundler/setup' # Set up gems listed in the Gemfile.
0 commit comments