mirror of
https://github.com/SqrtMinusOne/sqrtminusone.github.io.git
synced 2025-12-11 16:13:03 +03:00
5 lines
187 B
Bash
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;'
|