-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrun.py
44 lines (34 loc) · 1.18 KB
/
run.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import inquirer
from termcolor import colored
from src.scripts.cli.select.select_job import select_job
from src.scripts.cli.select.select_util import select_util
from src.scripts.initialize import initialize_project
from server import run_server
def main():
initialize_project()
try:
choices = [
inquirer.List('category',
message="Select command category",
choices=[
'Start Course Creator',
'Utilities',
'Run App Server'
]),
]
choice = inquirer.prompt(choices, raise_keyboard_interrupt=True)
answer = choice['category']
match answer:
case 'Start Course Creator':
return select_job()
case 'Utilities':
return select_util()
case 'Run App Server':
return run_server()
case _:
"You did not select a command category. Exiting..."
print('Done.')
except KeyboardInterrupt:
print(colored("Exiting...", "red"))
if __name__ == '__main__':
main()