Files
smartsoltech_site/scripts/README.md
Andrey K. Choi 6fe0780113
All checks were successful
continuous-integration/drone/push Build is passing
Reorganize project structure and cleanup root directory
 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.
2025-11-25 18:00:50 +09:00

23 lines
731 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 🐍 Scripts
Папка содержит вспомогательные скрипты для проекта SmartSolTech.
## Файлы:
- `create_hero_banner.py` - Скрипт для создания героических баннеров
- `hero_script.py` - Дополнительный скрипт для работы с баннерами
## Использование:
Запуск скриптов должен производиться из корневой директории проекта:
```bash
cd smartsoltech/
python ../scripts/create_hero_banner.py
```
или через Django management команды из папки smartsoltech/:
```bash
python manage.py shell < ../scripts/script_name.py
```