9 lines
145 B
Bash
Executable File
9 lines
145 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
source .env
|
|
python3.13 -m venv .venv
|
|
source .venv/bin/activate
|
|
|
|
pip install -r requirements.txt
|
|
|
|
exec python3.13 send_email.py |