mirror of
https://github.com/Frooodle/Stirling-PDF.git
synced 2026-04-22 23:08:53 +02:00
# Description of Changes We keep adding stuff to `engine/config/.env.example` and have to manually update `.env` because of it, which is really clunky, especially when working on multiple worktrees at once. This PR changes it so that we just have a committed `.env` file and have an `.env.local` override to put the actual private keys into, which should make it a bit easier to manage. > [!warning] > > After this goes in, be very careful for a little while not to accidentally commit any keys that you've got inside your `.env` file!
77 lines
828 B
Plaintext
77 lines
828 B
Plaintext
# Version control
|
|
.git/
|
|
.gitignore
|
|
|
|
# Build outputs
|
|
build/
|
|
*/build/
|
|
**/build/
|
|
out/
|
|
target/
|
|
**/target/
|
|
bin/
|
|
version_builds/
|
|
|
|
# Gradle caches (local, not what's in the container)
|
|
.gradle/
|
|
**/.gradle/
|
|
|
|
# Node / frontend
|
|
node_modules/
|
|
**/node_modules/
|
|
frontend/node_modules/
|
|
frontend/dist/
|
|
.npm/
|
|
.yarn/
|
|
|
|
# Tauri/desktop builds
|
|
src-tauri/target/
|
|
src-tauri/dist/
|
|
|
|
# IDE and editor
|
|
.idea/
|
|
.vscode/
|
|
*.iml
|
|
*.ipr
|
|
*.iws
|
|
|
|
# Logs and temp files
|
|
*.log
|
|
*.tmp
|
|
*.pid
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Docker itself
|
|
Dockerfile*
|
|
.dockerignore
|
|
|
|
# CI / CD configs (not needed in build context)
|
|
.github/
|
|
.circleci/
|
|
.gitlab-ci.yml
|
|
|
|
# Test reports
|
|
**/test-results/
|
|
**/jacoco/
|
|
|
|
# Testing and documentation (not needed in build)
|
|
testing/
|
|
docs/
|
|
*.md
|
|
README*
|
|
|
|
# Local env
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
!engine/.env
|
|
|
|
# Misc
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
.cache/
|
|
.pytest_cache/
|