This commit is contained in:
2026-01-20 01:05:17 +01:00
parent e4d01bc480
commit cbb2b64f92
5846 changed files with 1687 additions and 4494 deletions

View File

@@ -0,0 +1,65 @@
# 🌙 OVERNIGHT ASSET GENERATION
## Quick Start
```bash
# Run in background overnight
cd /Users/davidkotnik/repos/novafarma
nohup python3 scripts/generate_overnight.py > overnight_production.log 2>&1 &
# Check progress
tail -f overnight_production.log
# Check how many done
find assets/images -name "*.png" | wc -l
```
## What It Does
- ✅ Generates ALL remaining assets from registry
- ✅ Rate limited: 60s between each asset
- ✅ Auto-commits every 20 assets
- ✅ Runs autonomously in background
- ✅ Logs everything to `overnight_production.log`
## Details
- **Total assets**: 422
- **Already done**: ~38
- **Remaining**: ~384
- **Estimated time**: ~6.4 hours (384 × 60s)
## Style
All assets use approved **Dark Hand-Drawn 2D Stylized Indie** style:
- Bold thick black outlines
- Exaggerated proportions
- Green chroma key background
- Mature 90s cartoon aesthetic
## Monitor Progress
```bash
# Watch live log
tail -f overnight_production.log
# Count generated files
find assets/images -name "*.png" | wc -l
# Check git commits
git log --oneline | head -10
```
## Stop If Needed
```bash
# Find process
ps aux | grep generate_overnight
# Kill it
kill <PID>
```
---
**Let it run overnight and wake up to 422 complete game assets!** 🌙✨