2019-06-06 21:58:21 +02:00
|
|
|
#!/usr/bin/env python3
|
2020-01-14 13:32:45 +01:00
|
|
|
from tutor.plugins import OfficialPlugin
|
2019-06-06 21:58:21 +02:00
|
|
|
|
2019-08-20 17:01:34 +02:00
|
|
|
# Manually install plugins (this is for creating the bundle)
|
2020-01-14 13:32:45 +01:00
|
|
|
for plugin_name in [
|
|
|
|
"discovery",
|
|
|
|
"ecommerce",
|
|
|
|
"figures",
|
|
|
|
"lts",
|
|
|
|
"minio",
|
|
|
|
"notes",
|
|
|
|
"xqueue",
|
|
|
|
]:
|
2019-08-20 17:01:34 +02:00
|
|
|
try:
|
2020-01-14 13:32:45 +01:00
|
|
|
OfficialPlugin.INSTALLED.append(OfficialPlugin(plugin_name))
|
2019-08-20 17:01:34 +02:00
|
|
|
except ImportError:
|
|
|
|
pass
|
|
|
|
|
2019-12-25 01:09:53 +01:00
|
|
|
from tutor.commands.cli import main
|
2019-12-25 01:15:50 +01:00
|
|
|
|
2019-06-06 21:58:21 +02:00
|
|
|
main()
|