Compare commits

..

No commits in common. "9e63f974bde2dc17f3c30d8b30902d83dd6adca8" and "7801b9e2f10c5728554e30e44af1738d5778bd2c" have entirely different histories.

7 changed files with 11 additions and 13 deletions

View file

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

View file

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

2
.idea/misc.xml generated
View file

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

View file

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

View file

@ -1,5 +1,5 @@
.PHONY: help build publish
VERSION = 1.3.0
VERSION = 1.2.4
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}'

View file

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

View file

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