Run make date via poetry
This commit is contained in:
parent
8e1c670ffd
commit
362732c22a
|
@ -6,7 +6,7 @@ RUN npm install && \
|
|||
|
||||
FROM python:3.10.9-alpine
|
||||
|
||||
ENV VERSION_NUMBER 0.1.4
|
||||
ENV VERSION_NUMBER 0.1.2-3-g8e1c670
|
||||
ENV PROD 1
|
||||
|
||||
RUN apk add \
|
||||
|
|
2
Makefile
2
Makefile
|
@ -56,7 +56,7 @@ sethookdir:
|
|||
git config core.hooksPath .githooks
|
||||
|
||||
date:
|
||||
python3 -c 'import datetime; from zoneinfo import ZoneInfo; print(datetime.datetime.isoformat(datetime.datetime.now(ZoneInfo("Europe/Prague")), timespec="minutes", sep=" "))'
|
||||
poetry run python -c 'import datetime; from zoneinfo import ZoneInfo; print(datetime.datetime.isoformat(datetime.datetime.now(ZoneInfo("Europe/Prague")), timespec="minutes", sep=" "))'
|
||||
|
||||
cleanstatic:
|
||||
rm -r src/web/static/*
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[tool.poetry]
|
||||
name = "timetracker"
|
||||
version = "0.1.4"
|
||||
version = "0.1.2"
|
||||
description = "A simple time tracker."
|
||||
authors = ["Lukáš Kucharczyk <lukas@kucharczyk.xyz>"]
|
||||
license = "GPL"
|
||||
|
|
Loading…
Reference in New Issue