I'm building a SAAS platform with heroku and Rails. For these, I'm managing the tenant with apartment gem
.
In my local development this found without issues, but when I tried to use into heroku appear the next error:
/app/db/schema.rb doesn't exist yet
This error is produced it when run the next command:
Apartment::Tenant.create('foo_schema')
I'm going to write the main steps to setting up a heroku with subdomains + apartment configuration.
- Setting up a wildcard domain (This configuration it's ok).
- I'm using
postgresql
inproduction
anddevelopment
- Setting up
apartment.rb
file intoinitializer
directory.
my apartment.rb
require 'apartment/elevators/subdomain'
Apartment.configure do |config|
config.excluded_models = %w{Account Company App Acteco Country Currency Price}
config.tenant_names = lambda { Company.pluck(:slug) }
config.use_schemas = true
end
Rails.application.config.middleware.insert_before Warden::Manager, Apartment::Elevators::Subdomain
Any suggestion ?
Add
db/schema.rb
to your repository and push again?