mirror of https://gitlab.com/tildes/tildes.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
440 B
16 lines
440 B
{% from 'common.jinja2' import app_dir, bin_dir -%}
|
|
[Unit]
|
|
Description=Topic Youtube Scraper (Queue Consumer)
|
|
Requires=rabbitmq-server.service
|
|
After=rabbitmq-server.service
|
|
PartOf=rabbitmq-server.service
|
|
|
|
[Service]
|
|
WorkingDirectory={{ app_dir }}/consumers
|
|
Environment="INI_FILE={{ app_dir }}/{{ pillar['ini_file'] }}"
|
|
ExecStart={{ bin_dir }}/python topic_youtube_scraper.py
|
|
Restart=always
|
|
RestartSec=5
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|