Sidekiq-enabled apps are referenced in /etc/sidekiq.conf by default. Add each app's path as a new line, e.g.:
```
/home/apps/my-cool-ruby-app,1
/home/apps/another-app/current,2
```
The format is:
`app,number_of_workers`
Start the jungle running:
`sudo start sidekiq-manager`
This script will run at boot time.
Start a single sidekiq like this:
`sudo start sidekiq app=/path/to/app index=0`
## Logs
Everything is logged by upstart, defaulting to `/var/log/upstart`.
Each sidekiq instance is named after its directory, so for an app called `/home/apps/my-app` with one process the log file would be `/var/log/upstart/sidekiq-_home_apps_my-app-0.log`.
## Conventions
* The script expects:
* a config file to exist under `config/sidekiq.yml` in your app. E.g.: `/home/apps/my-app/config/sidekiq.yml`.