- Update .gitignore for dev/ and tmp/ directories - Move certificate setup to dev/ directory with README - Remove production references from AGENTS.md - Clean up directory structure and documentation - Repository now ready for development workflow
24 lines
No EOL
250 B
Text
24 lines
No EOL
250 B
Text
# Development directories
|
|
dev/
|
|
tmp/
|
|
test_files/
|
|
sample_data/
|
|
|
|
# Temporary files
|
|
*.log
|
|
*.tmp
|
|
.DS_Store
|
|
|
|
# TLS certificates - NEVER commit to repository
|
|
*.pem
|
|
*.key
|
|
*.crt
|
|
certbot/
|
|
|
|
# Rust build artifacts
|
|
/target/
|
|
Cargo.lock
|
|
|
|
# IDE files
|
|
.vscode/
|
|
.idea/ |