Compare commits
	
		
			1 Commits
		
	
	
		
			7d6b53cd1d
			...
			0.1.4
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 9de1695a1c | 
@ -1,3 +1,7 @@
 | 
				
			|||||||
 | 
					## 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
 | 
					## 0.1.3 / 2023-01-08 15:23+01:00
 | 
				
			||||||
 | 
					
 | 
				
			||||||
* Fix CSRF error (https://git.kucharczyk.xyz/lukas/timetracker/pulls/22)
 | 
					* Fix CSRF error (https://git.kucharczyk.xyz/lukas/timetracker/pulls/22)
 | 
				
			||||||
 | 
				
			|||||||
@ -6,7 +6,7 @@ RUN npm install && \
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
FROM python:3.10.9-alpine
 | 
					FROM python:3.10.9-alpine
 | 
				
			||||||
 | 
					
 | 
				
			||||||
ENV VERSION_NUMBER 0.1.3
 | 
					ENV VERSION_NUMBER 0.1.2-2-ge5a9b9a
 | 
				
			||||||
ENV PROD 1
 | 
					ENV PROD 1
 | 
				
			||||||
 | 
					
 | 
				
			||||||
RUN apk add \
 | 
					RUN apk add \
 | 
				
			||||||
 | 
				
			|||||||
							
								
								
									
										2
									
								
								Makefile
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								Makefile
									
									
									
									
									
								
							@ -44,7 +44,7 @@ shell:
 | 
				
			|||||||
	poetry run python src/web/manage.py shell
 | 
						poetry run python src/web/manage.py shell
 | 
				
			||||||
 | 
					
 | 
				
			||||||
collectstatic:
 | 
					collectstatic:
 | 
				
			||||||
	poetry run python src/web/manage.py collectstatic
 | 
						poetry run python src/web/manage.py collectstatic --clear --no-input
 | 
				
			||||||
 | 
					
 | 
				
			||||||
poetry.lock: pyproject.toml
 | 
					poetry.lock: pyproject.toml
 | 
				
			||||||
	poetry install
 | 
						poetry install
 | 
				
			||||||
 | 
				
			|||||||
@ -5,7 +5,7 @@ echo "Apply database migrations"
 | 
				
			|||||||
poetry run python src/web/manage.py migrate
 | 
					poetry run python src/web/manage.py migrate
 | 
				
			||||||
 | 
					
 | 
				
			||||||
echo "Collect static files"
 | 
					echo "Collect static files"
 | 
				
			||||||
poetry run python src/web/manage.py collectstatic
 | 
					poetry run python src/web/manage.py collectstatic --clear --no-input
 | 
				
			||||||
 | 
					
 | 
				
			||||||
echo "Starting server"
 | 
					echo "Starting server"
 | 
				
			||||||
caddy start
 | 
					caddy start
 | 
				
			||||||
 | 
				
			|||||||
@ -1,6 +1,6 @@
 | 
				
			|||||||
[tool.poetry]
 | 
					[tool.poetry]
 | 
				
			||||||
name = "timetracker"
 | 
					name = "timetracker"
 | 
				
			||||||
version = "0.1.3"
 | 
					version = "0.1.2"
 | 
				
			||||||
description = "A simple time tracker."
 | 
					description = "A simple time tracker."
 | 
				
			||||||
authors = ["Lukáš Kucharczyk <lukas@kucharczyk.xyz>"]
 | 
					authors = ["Lukáš Kucharczyk <lukas@kucharczyk.xyz>"]
 | 
				
			||||||
license = "GPL"
 | 
					license = "GPL"
 | 
				
			||||||
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user