From 3e77b1edb883afabb758936156d0a91bca8b560d Mon Sep 17 00:00:00 2001 From: Bernard Siebens Date: Sat, 3 Jan 2026 12:38:06 +0100 Subject: [PATCH] Set up `theme` app with initial structure, Tailwind CSS integration, and npm dependencies --- .idea/misc.xml | 4 + TeamForge/settings.py | 122 +- pyproject.toml | 1 + theme/__init__.py | 0 theme/apps.py | 5 + theme/static_src/.gitignore | 1 + theme/static_src/package-lock.json | 1725 ++++++++++++++++++++++++++++ theme/static_src/package.json | 26 + theme/static_src/postcss.config.js | 7 + theme/static_src/src/styles.css | 11 + theme/templates/base.html | 26 + uv.lock | 32 + 12 files changed, 1922 insertions(+), 38 deletions(-) create mode 100644 theme/__init__.py create mode 100644 theme/apps.py create mode 100644 theme/static_src/.gitignore create mode 100644 theme/static_src/package-lock.json create mode 100644 theme/static_src/package.json create mode 100644 theme/static_src/postcss.config.js create mode 100644 theme/static_src/src/styles.css create mode 100644 theme/templates/base.html diff --git a/.idea/misc.xml b/.idea/misc.xml index 0922ab1..0922100 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -4,4 +4,8 @@