1 Commits

Author SHA1 Message Date
e4075151f3 Update version, changelog 2023-01-08 15:30:28 +01:00
5 changed files with 4 additions and 8 deletions

View File

@ -1,7 +1,3 @@
## Unreleased
* Fix collectstaticfiles causing error when restarting container (https://git.kucharczyk.xyz/lukas/timetracker/issues/23)
## 0.1.3 / 2023-01-08 15:23+01:00
* Fix CSRF error (https://git.kucharczyk.xyz/lukas/timetracker/pulls/22)

View File

@ -6,7 +6,7 @@ RUN npm install && \
FROM python:3.10.9-alpine
ENV VERSION_NUMBER 0.1.2-3-g83f075e
ENV VERSION_NUMBER 0.1.0-60-gd368236
ENV PROD 1
RUN apk add \

View File

@ -44,7 +44,7 @@ shell:
poetry run python src/web/manage.py shell
collectstatic:
poetry run python src/web/manage.py collectstatic -c --no-input
poetry run python src/web/manage.py collectstatic
poetry.lock: pyproject.toml
poetry install

View File

@ -5,7 +5,7 @@ echo "Apply database migrations"
poetry run python src/web/manage.py migrate
echo "Collect static files"
poetry run python src/web/manage.py collectstatic --clear --no-input
poetry run python src/web/manage.py collectstatic
echo "Starting server"
caddy start

View File

@ -1,6 +1,6 @@
[tool.poetry]
name = "timetracker"
version = "0.1.2"
version = "0.1.0"
description = "A simple time tracker."
authors = ["Lukáš Kucharczyk <lukas@kucharczyk.xyz>"]
license = "GPL"