From 7014a2196837235226b077dd53ca28e117f0b2c2 Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Wed, 25 Jul 2018 18:18:02 -0700 Subject: include git revision in footer --- python/config.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'python/config.py') diff --git a/python/config.py b/python/config.py index 21c1e148..684734f0 100644 --- a/python/config.py +++ b/python/config.py @@ -1,5 +1,7 @@ import os +import subprocess + basedir = os.path.abspath(os.path.dirname(__file__)) class Config(object): @@ -8,6 +10,7 @@ class Config(object): SQLALCHEMY_TRACK_MODIFICATIONS = False ELASTIC_BACKEND = "http://search.qa.fatcat.wiki:8088" ELASTIC_INDEX = "crossref-works" + GIT_REVISION = subprocess.check_output(["git", "describe", "--always"]).strip() # "Event more verbose" debug options. SECRET_KEY is bogus. #SQLALCHEMY_ECHO = True -- cgit v1.2.3