feat: update gitignore and pyproject.toml
All checks were successful
Docker CI/CD / Docker Build and Push to Docker Hub (push) Successful in 2m38s
Python Package CI/CD / Publish to PyPI (push) Successful in 1m10s

- .gitignore adjusted to handle Docker builds:
  - Added `/dist/*` to ignore all files in `dist/` except `css`.
- Increased library version to 0.3.10 in pyproject.toml.
- Removed unused bootstrap JS files.

This change ensures Docker builds exclude unnecessary files, while allowing necessary CSS files in `dist/`. Additionally, the version bump addresses new project improvements and the cleanup of orphaned files.
This commit is contained in:
Kumi 2024-07-21 17:12:09 +02:00
parent c82e0961b7
commit 20c03bb4e0
Signed by: kumi
GPG key ID: ECBCC9082395383F
4 changed files with 6 additions and 10 deletions

6
.gitignore vendored
View file

@ -1,9 +1,13 @@
.env
.vscode
__pycache__/
/dist/
docker-compose.yml
privacy.md
privacy.txt
*.pyc
venv/
# Special rules needed for building the Docker image
/dist/*
!/dist/css/
!/dist/css/*

View file

@ -4,7 +4,7 @@ build-backend = "hatchling.build"
[project]
name = "structables"
version = "0.3.9"
version = "0.3.10"
authors = [
{ name="Private.coffee Team", email="support@private.coffee" },
]

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long