Files
jiggablend/.gitignore
Justin Harms 2deb47e5ad Refactor web build process and update documentation
- Removed Node.js build artifacts from .gitignore and adjusted Makefile to reflect changes in web UI build process, now using server-rendered Go templates instead of React.
- Updated README to clarify the new web UI architecture and output formats, emphasizing the removal of the Node.js build step.
- Added a command to set the number of frames per render task in manager configuration, enhancing user control over rendering settings.
- Improved Gitea workflow by removing unnecessary npm install step, streamlining the CI process.
2026-03-12 19:44:40 -05:00

73 lines
695 B
Plaintext

# Binaries
/bin/
/manager
/runner
*.exe
*.exe~
*.dll
*.so
*.dylib
# Test binary, built with `go test -c`
*.test
# Output of the go coverage tool
*.out
# Dependency directories
/vendor/
# Go workspace file
go.work
# Database files
*.db
*.db-shm
*.db-wal
jiggablend.db
jiggablend.db.wal
jiggablend.db-shm
jiggablend.db-journal
# Log files
*.log
logs/
# Secrets and configuration
runner-secrets.json
runner-secrets-*.json
*.secret
.env
.env.local
# Storage directories
jiggablend-storage/
jiggablend-workspaces/
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
# Build artifacts
*.o
*.a
*.so
/dist/
# Temporary files
*.tmp
*.temp
/tmp/
# Logs
*.log
/logs/
# OS files
Thumbs.db
.DS_Store