Landagent
Super Easy Postgres Multitenancy
Using a subdomain mapping design pattern, Landagent takes advantage of PostgresQL SCHEMA_SEARCH_PATH. Landagent maps tenants with complete data segregation to the required data namespace.
Installation
Add this line to your application's Gemfile:
gem 'landagent'
And then execute:
$ bundle
Or install it yourself as:
$ gem install landagent
Then Install and run the migrations:
$ rails g landagent:install
$ rake db:migrate
Usage
Development Environments
Once you have Tenants set up, use something like lvh.me to map back to localhost
$ http://tenant1.lvh.me
Tenant migrations
Landagent will set up Tenants, then because she is a good land agent will update each of the tenants with the required migrations with:
$ rake tenants:db:migrate
In the Pipeline
- Devise hooks
- Locale hooks
- Management layer
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request