diff --git a/.github/workflows/service-deploy.yaml b/.github/workflows/service-deploy.yaml index 2858143..22fee35 100644 --- a/.github/workflows/service-deploy.yaml +++ b/.github/workflows/service-deploy.yaml @@ -6,7 +6,7 @@ on: - main env: - EC2_PUBLIC_IP: ec2-18-191-150-153.us-east-2.compute.amazonaws.com # TODO replace to your EC2 instance public IP + EC2_PUBLIC_IP: 18.191.150.153 # TODO replace to your EC2 instance public IP SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }} # TODO define this secret in your GitHub repo settings jobs: diff --git a/app.py b/app.py index e9e4da5..e412666 100644 --- a/app.py +++ b/app.py @@ -16,7 +16,7 @@ @app.route("/", methods=['GET']) def home(): - return "Hiiiiiiiiiii Sujal Don, this works! This app is an API, there is no UI ;-)" + return "Hiiouuuu Sujal Don, this works! This app is an API, there is no UI ;-)" @app.route('/discover')