diff options
| -rw-r--r-- | .github/workflows/main.yml | 5 | ||||
| -rw-r--r-- | templates/blog/home.html | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3c7b658c..b836c178 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -4,7 +4,12 @@ jobs: deploy: runs-on: "self-hosted" steps: + - name: Run Deployment Script - run: | chmod +x /home/ubuntu/deploy.sh /home/ubuntu/deploy.sh + shell: bash + - name: Start Gunicorn + - run: | + cd /home/ubuntu/thatcomputerscientist && gunicorn --bind :8000 --workers 2 thatcomputerscientist.wsgi --daemon shell: bash
\ No newline at end of file diff --git a/templates/blog/home.html b/templates/blog/home.html index 3f73bcc4..c8b0fa4f 100644 --- a/templates/blog/home.html +++ b/templates/blog/home.html @@ -10,7 +10,7 @@ {% comment %} <h1 class="center">That Computer Scientist</h1> {% endcomment %} - <p>Test + <p> Welcome to the home of That Computer Scientist. This is my personal website where I share all of my thoughts, ideas, and experiences. To know more about me, please visit my <a href="/about">About</a> page. If you |
