Remove todoist-github

It's got some pretty big bugs, and isn't running anyway
This commit is contained in:
Jake Howard 2020-08-22 12:01:24 +01:00
parent 07d5c4fa72
commit 67dfe6a8a0
Signed by: jake
GPG Key ID: 57AFB45680EDD477
3 changed files with 0 additions and 39 deletions

View File

@ -1,10 +0,0 @@
version: "2.3"
services:
todoist-github:
image: theorangeone/todoist-github:latest
restart: unless-stopped
command: python3 -m todoist_github --interval 900
environment:
- TODOIST_TOKEN={{ todoist_github.todoist_token }}
- GITHUB_TOKEN={{ todoist_github.github_token }}

View File

@ -22,9 +22,6 @@
- name: Install synapse
include: synapse.yml
- name: Install todoist-github
include: todoist-github.yml
- name: Install torrent
include: torrent.yml

View File

@ -1,26 +0,0 @@
- name: Include todoist-github variables
include_vars: todoist-github.yml
- name: Create todoist-github directory
file:
path: /opt/todoist-github
state: directory
owner: "{{ docker_user.name }}"
mode: "{{ docker_compose_directory_mask }}"
become: true
- name: Install todoist-github compose file
template:
src: files/todoist-github/docker-compose.yml
dest: /opt/todoist-github/docker-compose.yml
mode: "{{ docker_compose_file_mask }}"
owner: "{{ docker_user.name }}"
validate: /usr/bin/docker-compose -f %s config
register: compose_file
become: true
- name: restart todoist-github
shell:
chdir: /opt/todoist-github
cmd: "{{ docker_update_command }}"
when: compose_file.changed