Improve version handling
This commit is contained in:
parent
6475714369
commit
3b767eae11
3 changed files with 18 additions and 8 deletions
|
@ -14,6 +14,7 @@ from itsdangerous import URLSafeTimedSerializer
|
|||
from loguru import logger
|
||||
|
||||
from app.utils.emoji import _load_emojis
|
||||
from app.utils.version import get_version_commit
|
||||
|
||||
ROOT_DIR = Path().parent.resolve()
|
||||
|
||||
|
@ -24,7 +25,7 @@ VERSION_COMMIT = "dev"
|
|||
try:
|
||||
from app._version import VERSION_COMMIT # type: ignore
|
||||
except ImportError:
|
||||
pass
|
||||
VERSION_COMMIT = get_version_commit()
|
||||
|
||||
# Force reloading cache when the CSS is updated
|
||||
CSS_HASH = "none"
|
||||
|
|
12
app/utils/version.py
Normal file
12
app/utils/version.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
import subprocess
|
||||
|
||||
|
||||
def get_version_commit() -> str:
|
||||
try:
|
||||
return (
|
||||
subprocess.check_output(["git", "rev-parse", "--short=8", "v2"])
|
||||
.split()[0]
|
||||
.decode()
|
||||
)
|
||||
except Exception:
|
||||
return "dev"
|
Loading…
Add table
Add a link
Reference in a new issue