]> git.cworth.org Git - turbot/commitdiff
Rename .turbot.env to .slack-creds.env
authorCarl Worth <cworth@cworth.org>
Tue, 29 Sep 2020 22:05:21 +0000 (15:05 -0700)
committerCarl Worth <cworth@cworth.org>
Tue, 29 Sep 2020 22:05:21 +0000 (15:05 -0700)
I had originally chosen a generic name hoping that I could cram all
of our various credentials into this one file. But, alas, the Google
docs. credentials really want to be in a JSON file so they will be
separate.

Given that, I'll give each file a specific name, starting with this
Slack-specific file.

.gitignore
Makefile
turbot.wsgi.in

index 7f4f9db3c7088a468bd962a4e683fd905fce5029..88a40369076a0d4b4bcb7eed096510e9047cb949 100644 (file)
@@ -1,3 +1,3 @@
 turbot.wsgi
-.turbot.env
+.slack-creds.env
 __pycache__
index 3d10512283eb46149ba412ab221df9e64be28bce..defacbef2e9f4194bff34a9871c2397f210cea9e 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,7 @@ DEPLOY_HOST=halibut.cworth.org
 DEPLOY_DIR=/srv/halibut.cworth.org/turbot
 export DEPLOY_DIR
 DO_NOT_DEPLOY=env .gitignore
-DO_NOT_DELETE=.turbot.env
+DO_NOT_DELETE=.slack-creds.env
 
 help:
        @echo "Available targets (in rough order of expected use):"
index 5a260bfa3446bf0f5328deaadbe6496fee561f88..e59427915ae1032d0b6af36973343e17cfeeed5f 100644 (file)
@@ -2,6 +2,6 @@ import sys
 sys.path.insert(0, '${DEPLOY_DIR}')
 
 from dotenv import load_dotenv
-load_dotenv('${DEPLOY_DIR}/.turbot.env')
+load_dotenv('${DEPLOY_DIR}/.slack-creds.env')
 
 from turbot.turbot import app as application