atlas/.gitignore
ilia 7c633a02ed Initialize project structure with essential files and documentation
- Added .cursorrules for project guidelines and context
- Created README.md for project overview and goals
- Established ARCHITECTURE.md for architectural documentation
- Set up tickets directory with initial ticket management files
- Included .gitignore to manage ignored files and directories

This commit lays the foundation for the Atlas project, ensuring a clear structure for development and collaboration.
2026-01-05 20:09:44 -05:00

56 lines
433 B
Plaintext

# Dependencies
node_modules/
vendor/
__pycache__/
*.pyc
*.pyo
*.pyd
.Python
# Environment variables
.env
.env.local
.env.*.local
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# OS
.DS_Store
Thumbs.db
# Build outputs
dist/
build/
*.egg-info/
*.so
*.dylib
# Logs
*.log
logs/
# Temporary files
tmp/
temp/
*.tmp
# Coverage reports
coverage/
*.coverage
.nyc_output/
# Database
*.db
*.sqlite
*.sqlite3
# Compiled files
*.class
*.jar
*.war