CCrypto VPN public website https://vpn.ccrypto.org/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

16 lines
352 B

  1. #!/bin/sh
  2. # sometimes cron lacks $LANG. it can cause unicode issues with python
  3. export LANG="en_US.UTF-8"
  4. # poetry can also be in:
  5. # * ~/.local/bin/ (installed with pip)
  6. export PATH="$HOME/.local/bin/:$PATH"
  7. # * ~/.poetry/bin/ (installed with get-poetry)
  8. export PATH="$HOME/.poetry/bin/:$PATH"
  9. DIR="$(dirname $0)"
  10. cd $DIR
  11. poetry run ./manage.py $@