6
0
mirror of https://github.com/ChristianLight/tutor.git synced 2024-09-30 05:09:02 +00:00
tutor/bin/main.py

22 lines
384 B
Python
Raw Normal View History

#!/usr/bin/env python3
from tutor.plugins import OfficialPlugin
# Manually install plugins (this is for creating the bundle)
for plugin_name in [
"discovery",
"ecommerce",
# "figures",
"lts",
"minio",
"notes",
"xqueue",
]:
try:
OfficialPlugin.load(plugin_name)
except ImportError:
pass
2019-12-25 00:09:53 +00:00
from tutor.commands.cli import main
2019-12-25 00:15:50 +00:00
main()