You've already forked STARK
mirror of
https://github.com/MarkParker5/STARK.git
synced 2025-11-23 21:34:45 +02:00
17 lines
457 B
Python
17 lines
457 B
Python
#!/usr/local/bin/python3.8
|
|
import os
|
|
import config
|
|
|
|
modules = {
|
|
'Voice Assistant': 'voice_assistant',
|
|
'Telegram bot': 'telegram_bot',
|
|
}
|
|
|
|
for name, module in modules.items():
|
|
try:
|
|
print(f'launching the {name}')
|
|
os.system(f'lxterminal --command="python3.8 {config.path}/{module}.py"')
|
|
except:
|
|
print(f'[error]\t{name} launch failed')
|
|
os.system(f'lxterminal --command="python3.8 {config.path}/manage.py runserver"')
|