No release in over 3 years
Low commit activity in last 3 years
MissionKontrol is a simple and effective admin interface for your applications or microservices. You can find out more at: https://MissionKontrol.io
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.17
~> 12.3
~> 1.4

Runtime

~> 5.1
 Project Readme

MissionKontrol Logo

MissionKontrolRelay

Gem Version License

Description

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).

MisisonKontrolRelay

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.

Do I have to be using MissionKontrol in order to use this gem?

No! Anyone can use this gem. To see how you can use this gem outside of MissionKontrol, please see the 'endpoints' section below.

Installation instructions

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

Contributing

Before contributing please read the code of conduct here

Here is the contribution workflow:

  1. Fork the repo on GitHub
  2. Clone the project to your own machine
  3. Commit changes to your own branch
  4. Push your work back up to your fork
  5. Submit a Pull request so that we can review your changes

Getting set up

$ bundle install
$ RAILS_ENV=test bundle exec rails db:setup
$ RAILS_ENV=test bundle exec rails db:migrate

Running tests

$ bundle exec rspec