mirror of
https://github.com/kyantech/Palmr.git
synced 2025-10-22 22:02:00 +00:00
- Updated versioning across multiple components and documentation to v3.0-beta. - Introduced new Docker Compose configurations for S3-compatible storage and MinIO support. - Enhanced the documentation with new guides for API usage, architecture, and user management. - Improved localization and user experience in the frontend with updated UI components and styles. - Removed outdated Docker configurations and files to streamline the setup process. - Added new utilities for key generation and improved error handling in various components. - Updated license to reflect the new Kyantech-Permissive License.
81 lines
915 B
Plaintext
81 lines
915 B
Plaintext
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# Documentation
|
|
README.md
|
|
CONTRIBUTING.md
|
|
*.md
|
|
|
|
# Node modules
|
|
node_modules
|
|
*/node_modules
|
|
**/node_modules
|
|
|
|
# Build outputs
|
|
.next
|
|
dist
|
|
build
|
|
|
|
# Development files
|
|
.env*
|
|
.vscode
|
|
.idea
|
|
|
|
# Logs
|
|
*.log
|
|
logs
|
|
|
|
# Runtime data
|
|
pids
|
|
*.pid
|
|
*.seed
|
|
*.pid.lock
|
|
|
|
# Coverage directory used by tools like istanbul
|
|
coverage
|
|
|
|
# nyc test coverage
|
|
.nyc_output
|
|
|
|
# Dependency directories
|
|
jspm_packages/
|
|
|
|
# Optional npm cache directory
|
|
.npm
|
|
|
|
# Optional REPL history
|
|
.node_repl_history
|
|
|
|
# Output of 'npm pack'
|
|
*.tgz
|
|
|
|
# Yarn Integrity file
|
|
.yarn-integrity
|
|
|
|
# dotenv environment variables file
|
|
.env
|
|
|
|
# Docker files
|
|
Dockerfile*
|
|
docker-compose*
|
|
|
|
# Storage directories (created at runtime)
|
|
uploads/
|
|
temp-chunks/
|
|
apps/server/uploads/
|
|
apps/server/temp-chunks/
|
|
|
|
# Static files
|
|
apps/server/prisma/*.db
|
|
apps/server/.env
|
|
apps/web/.env
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db |