aboutsummaryrefslogtreecommitdiff
path: root/bot/_bs/default_tasks.py
diff options
context:
space:
mode:
Diffstat (limited to 'bot/_bs/default_tasks.py')
-rw-r--r--bot/_bs/default_tasks.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/bot/_bs/default_tasks.py b/bot/_bs/default_tasks.py
new file mode 100644
index 0000000..b17aefa
--- /dev/null
+++ b/bot/_bs/default_tasks.py
@@ -0,0 +1,16 @@
+import sys
+from subprocess import call
+
+from .load import load
+from .systemd import install_systemd
+
+
+def install_requirements():
+ call([sys.executable, '-m', 'pip', '-r', 'requirements.txt'])
+
+
+def run_bot():
+ load('bot').main()
+
+
+__all__ = ['run_bot', 'install_systemd', 'install_requirements']