feat: integrate instagrapi parser with cool-down and alerts

This commit is contained in:
Your Name
2026-08-05 19:50:20 +05:00
parent c6f434df08
commit f61f57c109
6 changed files with 526 additions and 8 deletions
@@ -0,0 +1,10 @@
INSERT INTO app_settings (key, label, value_type, value)
VALUES
('insta_login', 'Instagram Login', 'string', ''),
('insta_password', 'Instagram Password', 'secret', ''),
('insta_proxy_url', 'Instagram Proxy URL (http://user:pass@ip:port)', 'string', ''),
('insta_fetch_count', 'Instagram: количество проверяемых последних постов', 'int', '5'),
('insta_delay_base_minutes', 'Instagram: пауза между аккаунтами (минут)', 'int', '35'),
('insta_delay_random_minutes', 'Instagram: разброс паузы (± минут)', 'int', '5'),
('insta_cooldown_hours', 'Instagram: отлежка при лимитах (часов)', 'int', '12')
ON CONFLICT (key) DO NOTHING;