8 lines
129 B
Bash
Executable file
8 lines
129 B
Bash
Executable file
#!/bin/bash
|
|
|
|
HOME=$( cd "$(dirname "$0")" && pwd )
|
|
|
|
# exec inside the venv
|
|
source $HOME/venv/bin/activate
|
|
|
|
python3 $HOME/main.py
|