mirror of
https://github.com/Frooodle/Stirling-PDF.git
synced 2025-12-18 20:04:17 +01:00
- Make /api/v1/proprietary/ui-data/login endpoint public - Fix enableLogin to check both config flag AND proprietary module availability - Add enableLogin field to login endpoint response Frontend: - Dynamically show/hide SSO providers based on backend configuration - Redirect to home when login is disabled (anonymous mode) - Suppress 401 authentication errors on auth pages - Fix carousel image reset on input typing (memoize component) - Remove forgot password and signup links from login page - Conditionally render email form and dividers based on SSO availability Other: - Add .dockerignore for faster Docker builds - Configure nginx to run as non-root user - Bump version to 2.0.0
75 lines
739 B
Plaintext
75 lines
739 B
Plaintext
# Node modules and build artifacts
|
|
node_modules
|
|
frontend/node_modules
|
|
frontend/dist
|
|
frontend/build
|
|
frontend/.vite
|
|
frontend/.tauri
|
|
|
|
# Gradle build artifacts
|
|
.gradle
|
|
build
|
|
bin
|
|
target
|
|
out
|
|
|
|
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# IDE
|
|
.vscode
|
|
.idea
|
|
*.iml
|
|
*.iws
|
|
*.ipr
|
|
|
|
# Logs
|
|
*.log
|
|
logs
|
|
|
|
# Environment files
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Java compiled files
|
|
*.class
|
|
*.jar
|
|
*.war
|
|
*.ear
|
|
|
|
# Test reports
|
|
test-results
|
|
coverage
|
|
|
|
# Docker
|
|
docker-compose.override.yml
|
|
.dockerignore
|
|
|
|
# Temporary files
|
|
tmp
|
|
temp
|
|
*.tmp
|
|
*.swp
|
|
*~
|
|
|
|
# Runtime database and config files (locked by running app)
|
|
app/core/configs/**
|
|
stirling/**
|
|
stirling-pdf-DB*.mv.db
|
|
stirling-pdf-DB*.trace.db
|
|
|
|
# Documentation
|
|
*.md
|
|
!README.md
|
|
docs
|
|
|
|
# CI/CD
|
|
.github
|
|
.gitlab-ci.yml
|