Key features implemented: - Added html-render-config.json with root directory, index file, and static prefix settings for website rendering - Updated .gitignore to exclude Python cache files, compiled files, logs, and environment files while removing old project-specific entries The changes improve project configuration management and clean up version control exclusions for better development workflow.
18 lines
168 B
Plaintext
18 lines
168 B
Plaintext
```gitignore
|
|
# Python cache files
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
|
|
# Compiled Python files
|
|
*.cpython-*.pyc
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
*.env.*
|
|
``` |