10 lines
249 B
Bash
10 lines
249 B
Bash
#!/bin/bash
|
|
|
|
# Use this to run the microservice without any docker setup.
|
|
source .venv/bin/activate
|
|
python3 "$(pwd)/backend/api/main.py" --host "127.0.0.1" --port 5000 --workers 1 --script-id "n/a" --debug
|
|
deactivate
|
|
|
|
# All done:
|
|
echo "Done!"
|
|
exit 0 |