From 099ac93262e7c34d099b88ab512643bdfa79b237 Mon Sep 17 00:00:00 2001 From: nicco Date: Wed, 11 Apr 2018 15:20:14 +0200 Subject: [PATCH] Sample Config --- config.sample.json | 19 +++++++++++++++++++ docker-compose.yml | 4 ++-- 2 files changed, 21 insertions(+), 2 deletions(-) create mode 100644 config.sample.json diff --git a/config.sample.json b/config.sample.json new file mode 100644 index 0000000..d76eaa3 --- /dev/null +++ b/config.sample.json @@ -0,0 +1,19 @@ +{ + "login": "myAccount", + "password": "myPass", + "tag_list": ["cars", "cats", "memes"], + "comment_list": [ + ["cool", "awesome"], + ["!", "!!!", "🎉"] + ], + + "like_per_day": 1000, + "comments_per_day": 5, + "max_like_for_one_tag": 50, + "follow_per_day": 300, + "follow_time": 86400, + "unfollow_per_day": 280, + "unfollow_break_min": 15, + "unfollow_break_max": 30, + "log_mod": 0 +} \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml index 9a14ec8..be4e6c6 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -2,7 +2,7 @@ version: '3.6' services: instabot: - build: ./ + build: ./bot restart: always volumes: - - ./app.py:/app/app.py \ No newline at end of file + - ./config.json:/app/config.json \ No newline at end of file