mirror of
https://github.com/btouchard/ackify.git
synced 2026-05-24 10:58:50 -05:00
297ada2c78
Update all documentation, tests, and configuration files to use consistent ACKIFY_ prefixed environment variable names. This ensures proper namespacing and avoids conflicts with system environment variables. - Update test files with new variable names - Standardize documentation examples in README files - Fix Docker compose configurations and install scripts - Update error messages and warnings to use new variable names
58 lines
565 B
Plaintext
58 lines
565 B
Plaintext
# Git
|
|
.git
|
|
.gitignore
|
|
.idea
|
|
|
|
# Documentation
|
|
README_FR.md
|
|
CLAUDE.md
|
|
*SETUP.md
|
|
docs/
|
|
*.md
|
|
LICENSE
|
|
|
|
# Development
|
|
.env
|
|
.env.local
|
|
.env.example
|
|
community
|
|
migrate
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Build artifacts
|
|
*.exe
|
|
coverage.out
|
|
*.test
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
*.tmp
|
|
*.log
|
|
|
|
# GitHub Actions (not needed in container)
|
|
.github/
|
|
|
|
# Docker
|
|
Dockerfile*
|
|
docker-compose*
|
|
.dockerignore
|
|
|
|
# Installation files (for downloads only)
|
|
install/
|
|
client_secret*.json
|
|
|
|
# Node.js (if any frontend assets)
|
|
node_modules/
|
|
npm-debug.log
|
|
yarn-error.log |