diff --git a/.do/app.yaml b/.do/app.yaml index 2405d557..27a3c2b8 100644 --- a/.do/app.yaml +++ b/.do/app.yaml @@ -4,5 +4,5 @@ services: github: branch: main deploy_on_push: true - repo: digitalocean/sample-python + repo: chattylab/sample-python name: sample-python diff --git a/.do/deploy.template.yaml b/.do/deploy.template.yaml index 49d9df1e..994f4008 100644 --- a/.do/deploy.template.yaml +++ b/.do/deploy.template.yaml @@ -4,5 +4,5 @@ spec: - environment_slug: python git: branch: main - repo_clone_url: https://github.com/digitalocean/sample-python.git + repo_clone_url: https://github.com/chattylab/sample-python.git name: sample-python diff --git a/server.py b/server.py index 430d1dc7..b2dfc12f 100644 --- a/server.py +++ b/server.py @@ -9,7 +9,7 @@ class Handler(http.server.SimpleHTTPRequestHandler): def do_GET(self): self.send_response(HTTPStatus.OK) self.end_headers() - msg = 'Hello! you requested %s' % (self.path) + msg = 'Hello! you requested NOW DEV 1 %s' % (self.path) self.wfile.write(msg.encode())