Compare commits

..

3 commits

7 changed files with 13 additions and 11 deletions

View file

@ -1,3 +1,4 @@
.idea/
# Django project # Django project
/media/ /media/
/static/ /static/

View file

@ -15,8 +15,9 @@
<component name="NewModuleRootManager"> <component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$"> <content url="file://$MODULE_DIR$">
<excludeFolder url="file://$MODULE_DIR$/env" /> <excludeFolder url="file://$MODULE_DIR$/env" />
<excludeFolder url="file://$MODULE_DIR$/venv" />
</content> </content>
<orderEntry type="inheritedJdk" /> <orderEntry type="jdk" jdkName="Python 3.13 (iamkonstantin-web)" jdkType="Python SDK" />
<orderEntry type="sourceFolder" forTests="false" /> <orderEntry type="sourceFolder" forTests="false" />
</component> </component>
<component name="PyDocumentationSettings"> <component name="PyDocumentationSettings">

2
.idea/misc.xml generated
View file

@ -3,5 +3,5 @@
<component name="Black"> <component name="Black">
<option name="sdkName" value="Python 3.12 (iamkonstantin-web)" /> <option name="sdkName" value="Python 3.12 (iamkonstantin-web)" />
</component> </component>
<component name="ProjectRootManager" version="2" project-jdk-name="Python 3.12 (iamkonstantin-web)" project-jdk-type="Python SDK" /> <component name="ProjectRootManager" version="2" project-jdk-name="Python 3.13 (iamkonstantin-web)" project-jdk-type="Python SDK" />
</project> </project>

View file

@ -1,5 +1,5 @@
# Use an official Python runtime based on Debian 10 "buster" as a parent image. # Use an official Python runtime based on Debian 10 "buster" as a parent image.
FROM python:3.11-slim-buster FROM python:3.12-slim
# Add user that will be used in the container. # Add user that will be used in the container.
# RUN useradd wagtail # RUN useradd wagtail
@ -15,10 +15,10 @@ ENV PYTHONUNBUFFERED=1 \
PORT=8000 PORT=8000
# Install system packages required by Wagtail and Django. # Install system packages required by Wagtail and Django.
RUN apt-get update --yes --quiet && apt-get install --yes --quiet --no-install-recommends \ RUN apt-get update --yes --quiet && apt-get install --yes --no-install-recommends \
build-essential \ # build-essential \
libpq-dev \ # libpq-dev \
libmariadbclient-dev \ # libmariadbclient-dev \
libjpeg62-turbo-dev \ libjpeg62-turbo-dev \
zlib1g-dev \ zlib1g-dev \
libwebp-dev \ libwebp-dev \

View file

@ -1,5 +1,5 @@
.PHONY: help build publish .PHONY: help build publish
VERSION = 1.2.4 VERSION = 1.3.0
help: help:
@perl -nle'print $& if m{^[a-zA-Z_-]+:.*?## .*$$}' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}' @perl -nle'print $& if m{^[a-zA-Z_-]+:.*?## .*$$}' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'

View file

@ -64,7 +64,7 @@
<div class="relative w-full sm:px-8"> <div class="relative w-full sm:px-8">
{% include "includes/header.html" %} {% include "includes/header.html" %}
<main id="main" class="mx-auto max-w-7xl px-0 md:px-4 lg:px-8"> <main id="main" class="mx-auto max-w-5xl px-0 md:px-4 lg:px-8">
{% block content %}{% endblock %} {% block content %}{% endblock %}
</main> </main>

View file

@ -1,5 +1,5 @@
Django>=4.2,<5.1 Django>=4.2,<5.2
wagtail>=6.2.2,<6.3 wagtail>=6.3,<6.4
whitenoise>=6.6,<7.0 whitenoise>=6.6,<7.0
wagtailcodeblock>=1.29.0.2,<2.0 wagtailcodeblock>=1.29.0.2,<2.0
django-tailwind>=3.6.0 django-tailwind>=3.6.0