23 lines
975 B
Bash
Executable File
23 lines
975 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "🎯 Flytter sidste filer..."
|
|
|
|
# Flyt Python scripts til archive/scrapers
|
|
mv create_swedoor_manual.py archive/scrapers/ 2>/dev/null
|
|
mv map_products_to_categories.py archive/scrapers/ 2>/dev/null
|
|
mv scrape_bygma_api.py.broken archive/scrapers/ 2>/dev/null
|
|
|
|
# Flyt cleanup scripts til archive
|
|
mv final_cleanup.sh archive/scripts/ 2>/dev/null
|
|
|
|
# Backup systemd service fil
|
|
mv tilbudgivern-backend.service archive/scripts/ 2>/dev/null
|
|
|
|
echo "✅ Alt er nu organiseret!"
|
|
echo ""
|
|
echo "📊 Root filer nu:"
|
|
ls -1 | grep -v -E "^(backend|frontend|react-app|node_modules|\.git|\.venv|__pycache__|docs|archive|database|migrations|src|tests|logs|installation_data|manuals|apitest|core|infra|\.continue|\.env)$" | wc -l
|
|
echo ""
|
|
echo "📁 Kun vigtige filer tilbage:"
|
|
ls -1 | grep -v -E "^(backend|frontend|react-app|node_modules|\.git|\.venv|__pycache__|docs|archive|database|migrations|src|tests|logs|installation_data|manuals|apitest|core|infra|\.continue|\.env)$"
|