10 lines
176 B
Bash
10 lines
176 B
Bash
#!/bin/bash
|
|
|
|
# Use this to run the microservice without any docker setup.
|
|
source .venv/bin/activate
|
|
python3 "$(pwd)/cron/reports.py"
|
|
deactivate
|
|
|
|
# All done:
|
|
echo "Done!"
|
|
exit 0 |