File size: 120 Bytes
bdbce84 |
1 2 3 4 5 6 7 8 |
#!/bin/sh
# Add the current directory to PYTHONPATH
export PYTHONPATH=$(dirname "$(pwd)"):$PYTHONPATH
python3 app.py
|
bdbce84 |
1 2 3 4 5 6 7 8 |
#!/bin/sh
# Add the current directory to PYTHONPATH
export PYTHONPATH=$(dirname "$(pwd)"):$PYTHONPATH
python3 app.py
|