This repository has been archived by the owner on Nov 26, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
supervisord.conf
66 lines (50 loc) · 2.47 KB
/
supervisord.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[supervisord]
nodaemon=true
[program:git_repos_import_worker]
command=/bin/bash -l -c 'cd /app; /usr/local/bundle/bin/bundle exec rake versioneye:git_repos_import_worker'
autorestart=true
[program:git_repo_import_worker]
command=/bin/bash -l -c 'cd /app; /usr/local/bundle/bin/bundle exec rake versioneye:git_repo_import_worker'
autorestart=true
[program:git_repo_file_import_worker]
command=/bin/bash -l -c 'cd /app; /usr/local/bundle/bin/bundle exec rake versioneye:git_repo_file_import_worker'
autorestart=true
[program:git_pr_worker]
command=/bin/bash -l -c 'cd /app; /usr/local/bundle/bin/bundle exec rake versioneye:git_pr_worker'
autorestart=true
[program:sync_worker]
command=/bin/bash -l -c 'cd /app; /usr/local/bundle/bin/bundle exec rake versioneye:sync_worker'
autorestart=true
[program:language_daily_stats_worker]
command=/bin/bash -l -c 'cd /app; /usr/local/bundle/bin/bundle exec rake versioneye:language_daily_stats_worker'
autorestart=true
[program:team_notification_worker]
command=/bin/bash -l -c 'cd /app; /usr/local/bundle/bin/bundle exec rake versioneye:team_notification_worker'
autorestart=true
[program:send_notification_emails_worker]
command=/bin/bash -l -c 'cd /app; /usr/local/bundle/bin/bundle exec rake versioneye:send_notification_emails_worker'
autorestart=true
[program:update_index_worker]
command=/bin/bash -l -c 'cd /app; /usr/local/bundle/bin/bundle exec rake versioneye:update_index_worker'
autorestart=true
[program:update_meta_data_worker]
command=/bin/bash -l -c 'cd /app; /usr/local/bundle/bin/bundle exec rake versioneye:update_meta_data_worker'
autorestart=true
[program:newest_post_processor_worker]
command=/bin/bash -l -c 'cd /app; /usr/local/bundle/bin/bundle exec rake versioneye:newest_post_processor_worker'
autorestart=true
[program:dependency_badge_worker]
command=/bin/bash -l -c 'cd /app; /usr/local/bundle/bin/bundle exec rake versioneye:dependency_badge_worker'
autorestart=true
[program:common_worker]
command=/bin/bash -l -c 'cd /app; /usr/local/bundle/bin/bundle exec rake versioneye:common_worker'
autorestart=true
[program:project_update_worker]
command=/bin/bash -l -c 'cd /app; /usr/local/bundle/bin/bundle exec rake versioneye:project_update_worker'
autorestart=true
[program:inventory_worker]
command=/bin/bash -l -c 'cd /app; /usr/local/bundle/bin/bundle exec rake versioneye:inventory_worker'
autorestart=true
[program:scheduler]
command=/bin/bash -l -c 'cd /app; /usr/local/bundle/bin/bundle exec rake versioneye:scheduler'
autorestart=true