9 lines
184 B
Bash
9 lines
184 B
Bash
|
|
#!/bin/bash
|
||
|
|
# Start script to run both Discord bot and web server
|
||
|
|
|
||
|
|
# Start web server in background
|
||
|
|
python -m src.main web &
|
||
|
|
|
||
|
|
# Start Discord bot in foreground
|
||
|
|
#python -m src.main bot
|