feat: update gitignore and pyproject.toml
- .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:
parent
c82e0961b7
commit
20c03bb4e0
4 changed files with 6 additions and 10 deletions
6
.gitignore
vendored
6
.gitignore
vendored
|
@ -1,9 +1,13 @@
|
||||||
.env
|
.env
|
||||||
.vscode
|
.vscode
|
||||||
__pycache__/
|
__pycache__/
|
||||||
/dist/
|
|
||||||
docker-compose.yml
|
docker-compose.yml
|
||||||
privacy.md
|
privacy.md
|
||||||
privacy.txt
|
privacy.txt
|
||||||
*.pyc
|
*.pyc
|
||||||
venv/
|
venv/
|
||||||
|
|
||||||
|
# Special rules needed for building the Docker image
|
||||||
|
/dist/*
|
||||||
|
!/dist/css/
|
||||||
|
!/dist/css/*
|
|
@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "structables"
|
name = "structables"
|
||||||
version = "0.3.9"
|
version = "0.3.10"
|
||||||
authors = [
|
authors = [
|
||||||
{ name="Private.coffee Team", email="support@private.coffee" },
|
{ 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
Loading…
Reference in a new issue