diff options
| author | Bobby <[email protected]> | 2022-11-11 00:20:09 -0500 |
|---|---|---|
| committer | Bobby <[email protected]> | 2022-11-11 00:20:09 -0500 |
| commit | 4da9d9553498fd2f910f3bd52c8f8f9d7680e1f9 (patch) | |
| tree | f20283dbc1becb9de38523eefc3c22c9f35c0cbf | |
| parent | 060872a0a5619701da849690c3adc61336a4281e (diff) | |
| download | thatcomputerscientist-4da9d9553498fd2f910f3bd52c8f8f9d7680e1f9.tar.xz thatcomputerscientist-4da9d9553498fd2f910f3bd52c8f8f9d7680e1f9.zip | |
Running Deployment Script on Server
| -rw-r--r-- | .github/workflows/main.yml | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index b61adaff..3fdbb927 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -5,4 +5,11 @@ jobs: name: Deploy App runs-on: "self-hosted" steps: - - run: echo "Deploying" + # cd thatcomputerscientist + # gunicorn --bind :8000 --workers 3 thatcomputerscientist.wsgi --daemon + - name: Deploy + run: | + cd thatcomputerscientist + gunicorn --bind :8000 --workers 3 thatcomputerscientist.wsgi --daemon + exit 0 + |
