MissionKontrol is a simple and effective admin interface for your applications or microservices. Unlike gems like active admin or rails admin, there's no significant coding needed to get started.
It is a self hosted application that is quick and easy to set up, even if you aren't a developer. MissionKontrol doesn't need to know anything about your application(s) in order to work, it just needs to connect to your database(s).
This gem that gives your version of MissionKontrol more power and better features by providing it with more information about your application (such as model associations and validations).
Using the access token generated on install, only your hosted version of MissionKontrol will get access to this information.
No! Anyone can use this gem. To see how you can use this gem outside of MissionKontrol, please see the 'endpoints' section below.
You can install MissionKontrolRelay into your Rails application by adding it into your gemfile:
gem 'mission_kontrol_relay'
or you can install it manually:
$ gem install 'mission_kontrol_relay'
Once you have installed the gem you need to run the generator:
$ rails generate mission_kontrol_relay:install
The generator will generate your token and save it as an environment variable. You will need this to allow MissionKontrol to talk to your application, or if you want to access the provided endpoints.
To access your token run the following:
$ printenv MISSION_KONTROL_TOKEN
Before contributing please read the code of conduct here
Here is the contribution workflow:
- Fork the repo on GitHub
- Clone the project to your own machine
- Commit changes to your own branch
- Push your work back up to your fork
- Submit a Pull request so that we can review your changes
$ bundle install
$ RAILS_ENV=test bundle exec rails db:setup
$ RAILS_ENV=test bundle exec rails db:migrate
$ bundle exec rspec