sqrtminusone.github.io/deploy/entrypoint.sh
2021-12-11 19:08:46 +03:00

5 lines
187 B
Bash

#!/usr/bin/env bash
CWD=/usr/share/nginx/html
(cd $CWD && git fetch origin && git checkout origin/gh-pages)
(cd /deploy && gunicorn -w 1 "deployer:create_app()") &
nginx -g 'daemon off;'