mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-11-09 23:00:59 +00:00
84f2060d33
The k8s quickstart command is now functional, with suppport for https, xqueue, notes and minio. There are still a few bugs to get rid of, though.
11 lines
217 B
Python
Executable File
11 lines
217 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
from tutor.commands.cli import main
|
|
|
|
# Manually adding plugins to bundle
|
|
from tutor.plugins import Plugins
|
|
import tutorminio.plugin
|
|
|
|
Plugins.EXTRA_INSTALLED["minio"] = tutorminio.plugin
|
|
main()
|