Minecraft Whitelisting
Quartz is a ruby app written to pair with the Sponge SQL-Whitelist plugin to automatically add registered users to the Minecraft whitelist.
Config info coming soon
This app has builtin SSO for a discourse forum. To use, change the name of disourse_sso_controler.rb.example to discourse_sso_controler.rb and edit the defaults
To work on Quartz you need to run a few commands, I am assuming you already have ruby installed on your machine
NOTE! If you do run the seed command, you MUST change the email and password, they are stored in plain text in this repo. I am not responsible if you deply this app publicly and use the default admin credentials.
Username/email: admin@example.com
password: admin1234
If you dont need the Content managment and blog functionality of Quartz you can disable a few things and it will stay out of your way. First you will need to disable the CMS routes by commenting out the following lines in your app/routes.rb file.
comfy_route :blog_admin, path: "/admin"
comfy_route :blog, path: "/blog"
comfy_route :cms_admin, path: "/admin"
comfy_route :cms, path: "/"
You will also have to change your root path. again in app/routes.rb change root to: 'comfy/cms/content#show'
to something else. I reccomend root to: 'dashboard#index'