Fix GIT_REV on dokku
authorkjwon15 <kjwonmail@gmail.com>
Thu, 27 Dec 2018 08:06:52 +0000 (17:06 +0900)
committerkjwon15 <kjwonmail@gmail.com>
Thu, 27 Dec 2018 10:08:28 +0000 (19:08 +0900)
bin/pre-deploy
relay/nodeinfo.py

index e76271f..0df205d 100755 (executable)
@@ -7,7 +7,7 @@ db: relay.jsonld
 
 # Listener
 listen: 0.0.0.0
-port: ${PORT:-8080}
+port: ${PORT:-5000}
 
 # Note
 note: "Make a note about your instance here."
index 5556e14..11e7f39 100644 (file)
@@ -1,3 +1,4 @@
+import os
 import subprocess
 import urllib.parse
 
@@ -10,7 +11,7 @@ from .database import DATABASE
 try:
     commit_label = subprocess.check_output(["git", "rev-parse", "HEAD"]).strip().decode('ascii')
 except:
-    commit_label = '???'
+    commit_label = os.environ.get('GIT_REV')
 
 
 nodeinfo_template = {