2019-06-06 19:58:21 +00:00
|
|
|
#!/usr/bin/env python3
|
2020-01-14 12:32:45 +00:00
|
|
|
from tutor.plugins import OfficialPlugin
|
2019-06-06 19:58:21 +00:00
|
|
|
|
2019-08-20 15:01:34 +00:00
|
|
|
# Manually install plugins (this is for creating the bundle)
|
2020-01-14 12:32:45 +00:00
|
|
|
for plugin_name in [
|
|
|
|
"discovery",
|
|
|
|
"ecommerce",
|
2019-12-24 16:22:12 +00:00
|
|
|
# "figures",
|
2020-01-14 12:32:45 +00:00
|
|
|
"lts",
|
|
|
|
"minio",
|
|
|
|
"notes",
|
|
|
|
"xqueue",
|
|
|
|
]:
|
2019-08-20 15:01:34 +00:00
|
|
|
try:
|
2020-01-14 12:32:45 +00:00
|
|
|
OfficialPlugin.INSTALLED.append(OfficialPlugin(plugin_name))
|
2019-08-20 15:01:34 +00:00
|
|
|
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
|
|
|
|
2019-06-06 19:58:21 +00:00
|
|
|
main()
|