13 lines
328 B
Bash
13 lines
328 B
Bash
#!/bin/bash
|
|
export EMAIL_HOST="10.10.2.34"
|
|
export EMAIL_USERNAME="karatay@mehmetkaratay.com.tr"
|
|
export EMAIL_PASSWORD="system"
|
|
export EMAIL_PORT=587
|
|
export EMAIL_SEND=1
|
|
export DB_HOST="10.10.2.14"
|
|
export DB_USER="postgres"
|
|
export DB_PASSWORD="password"
|
|
export DB_PORT=5432
|
|
|
|
env >> /var/log/cron.log
|
|
/usr/local/bin/python /app.py |