All checks were successful
continuous-integration/drone/push Build is passing
✨ Major improvements: - Created organized folder structure with utils/, scripts/, backups/, temp/ - Moved Python scripts to scripts/ folder for better organization - Moved utility files (start, stop, update, cli, logs, drone) to utils/ folder - Moved backup files to backups/ folder for cleaner root directory - Added comprehensive README.md files for each new folder - Updated main README.md with new project structure documentation - Enhanced .gitignore with rules for new folders - Added real-time career vacancy counter on homepage - Improved homepage career stats styling with better visibility 🗂️ New folder structure: - utils/ - Project management utilities and tools - scripts/ - Python helper scripts for banners and data - backups/ - Configuration and file backups - temp/ - Temporary files and development data 🎨 UI improvements: - Fixed white text visibility issues on homepage career section - Added dynamic vacancy count from database - Implemented glassmorphism design for career stats card - Better color contrast and hover effects This reorganization makes the project more maintainable and professional.
134 lines
1.6 KiB
Plaintext
134 lines
1.6 KiB
Plaintext
# 🐍 Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
pip-wheel-metadata/
|
|
share/python-wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
MANIFEST
|
|
|
|
# 🧪 Testing
|
|
.tox/
|
|
.coverage
|
|
.coverage.*
|
|
.cache
|
|
nosetests.xml
|
|
coverage.xml
|
|
*.cover
|
|
*.py,cover
|
|
.hypothesis/
|
|
.pytest_cache/
|
|
|
|
# 🌐 Django
|
|
*.log
|
|
local_settings.py
|
|
db.sqlite3
|
|
db.sqlite3-journal
|
|
media/
|
|
staticfiles/
|
|
smartsoltech/staticfiles/
|
|
static_root/
|
|
|
|
# ⚙️ Environment variables
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
.venv/
|
|
env/
|
|
venv/
|
|
ENV/
|
|
env.bak/
|
|
venv.bak/
|
|
|
|
# 📝 IDEs
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.history/
|
|
|
|
# 📱 OS
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# 🐳 Docker
|
|
.dockerignore
|
|
|
|
# 📊 Logs
|
|
logs/
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# 💾 QR codes (generated dynamically)
|
|
static/qr_codes/*.png
|
|
smartsoltech/static/qr_codes/*.png
|
|
!smartsoltech/static/qr_codes/.gitkeep
|
|
|
|
# 🗃️ Database
|
|
*.sqlite3
|
|
*.db
|
|
|
|
# 📧 Email
|
|
sent_emails/
|
|
|
|
# 🎨 CSS/JS builds
|
|
*.css.map
|
|
*.js.map
|
|
*.pyc
|
|
*.pyo
|
|
|
|
# 🔄 Cache
|
|
.cache/
|
|
.parcel-cache/
|
|
|
|
# 🌍 Translation files
|
|
*.pot
|
|
|
|
# 📋 Temporary files and folders
|
|
temp/
|
|
*.tmp
|
|
*.temp
|
|
|
|
# 🚫 Exclude test files from root
|
|
response_*.json
|
|
test_*.html
|
|
*_test.sh
|
|
endpoint_test.sh
|
|
loading_screen_fixed.html
|
|
qr_success_animation_demo.html
|
|
|
|
# 📋 Temporary documentation files that moved to docs/
|
|
BACKUP_SETUP_COMPLETE.md
|
|
COMMIT_SUMMARY.md
|
|
SCRIPTS_README.md
|
|
|
|
# 🔧 Utils and scripts (keep tracked but ignore development versions)
|
|
utils/*.log
|
|
scripts/*.log
|
|
backups/*.tmp |