diff options
| -rw-r--r-- | thatcomputerscientist/urls.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/thatcomputerscientist/urls.py b/thatcomputerscientist/urls.py index 809ea3c4..672c525d 100644 --- a/thatcomputerscientist/urls.py +++ b/thatcomputerscientist/urls.py @@ -24,7 +24,7 @@ BASE_DIR = settings.BASE_DIR def ci_view(request): # Run the deploy script in the base directory os.system(f"cd {BASE_DIR} && chmod +x deploy.sh && ./deploy.sh") - return HttpResponse("Deployed!") + return HttpResponse("Deployed! Test it out!") urlpatterns = [ |
