https://github.com/sul-dlss/robot-console
Tiny application to run the resque web console to show the status of the robots.
https://github.com/sul-dlss/robot-console
application infrastructure robot ruby
Last synced: 11 months ago
JSON representation
Tiny application to run the resque web console to show the status of the robots.
- Host: GitHub
- URL: https://github.com/sul-dlss/robot-console
- Owner: sul-dlss
- Created: 2019-05-08T22:15:41.000Z (about 7 years ago)
- Default Branch: main
- Last Pushed: 2024-04-08T15:55:41.000Z (about 2 years ago)
- Last Synced: 2024-04-09T10:53:50.374Z (about 2 years ago)
- Topics: application, infrastructure, robot, ruby
- Language: Ruby
- Homepage:
- Size: 232 KB
- Stars: 1
- Watchers: 18
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# robot-console
This runs the [sidekiq web console](https://github.com/mperham/sidekiq/wiki/Monitoring) to show the status of the robots.
## Running the app
### Install dependencies
```
bundle install
```
### Configure settings
You can set up the Redis connection by creating `config/settings/production.yml`
in shared configs or by setting the environment variables like this:
```
SETTINGS__REDIS__HOSTNAME=redis.school.edu
```
### Start
This project will work on any rack compatible server. Just point it at the
`config.ru` file. For example:
```
bundle exec puma
```