mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2026-09-02 21:03:34 +03:00
# Description of Changes We don't have any strong reasons to keep the Portal as a separate Vite app, and it needs access to so many things from the Editor that it no longer makes sense to keep them separate. This PR moves the Portal code to have direct access to the Editor code and gets rid of the shared folder.
111 lines
1.4 KiB
Plaintext
111 lines
1.4 KiB
Plaintext
# Version control
|
|
.git/
|
|
.gitignore
|
|
.git-blame-ignore-revs
|
|
.gitattributes
|
|
|
|
# Build outputs
|
|
build/
|
|
*/build/
|
|
**/build/
|
|
out/
|
|
target/
|
|
**/target/
|
|
bin/
|
|
version_builds/
|
|
|
|
# Gradle caches (local, not what's in the container)
|
|
.gradle/
|
|
**/.gradle/
|
|
.gradle-home/
|
|
|
|
# Task (go-task) cache
|
|
.task/
|
|
|
|
# Node / frontend
|
|
node_modules/
|
|
**/node_modules/
|
|
frontend/node_modules/
|
|
frontend/editor/dist/
|
|
frontend/editor/playwright-report/
|
|
.npm/
|
|
.yarn/
|
|
|
|
# Tauri/desktop builds
|
|
src-tauri/target/
|
|
src-tauri/dist/
|
|
frontend/editor/src-tauri/target/
|
|
frontend/editor/src-tauri/dist/
|
|
|
|
# IDE and editor
|
|
.idea/
|
|
.vscode/
|
|
.settings/
|
|
.settings.zip
|
|
.classpath
|
|
.project
|
|
.devcontainer/
|
|
*.iml
|
|
*.ipr
|
|
*.iws
|
|
|
|
# Logs and temp files
|
|
*.log
|
|
*.tmp
|
|
*.pid
|
|
.DS_Store
|
|
Thumbs.db
|
|
logs/
|
|
|
|
# Docker itself
|
|
Dockerfile*
|
|
.dockerignore
|
|
|
|
# CI / CD configs (not needed in build context)
|
|
.github/
|
|
.circleci/
|
|
.gitlab-ci.yml
|
|
|
|
# Test reports
|
|
**/test-results/
|
|
**/jacoco/
|
|
test_*.pdf
|
|
|
|
# Testing and documentation (not needed in build)
|
|
testing/
|
|
docs/
|
|
devGuide/
|
|
devTools/
|
|
*.md
|
|
README*
|
|
|
|
# Separate projects not consumed by the Java/frontend build
|
|
commonforms-onnx/
|
|
|
|
# Runtime mount points used by docker-compose volumes, not build input
|
|
stirling/
|
|
customFiles/
|
|
configs/
|
|
|
|
# Claude Code workspace
|
|
.claude/
|
|
|
|
# Python caches
|
|
.pytest_cache/
|
|
.ruff_cache/
|
|
__pycache__/
|
|
**/__pycache__/
|
|
|
|
# Local env
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
!engine/.env
|
|
|
|
# Misc
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
.cache/
|