- Sostituito README.md con versione avanzata e strutturata (indice, badge, quick start, deployment, troubleshooting, roadmap, credits) - Aggiunto .gitignore completo per .NET, Docker, VSCode, log, dati locali e secrets - Creato .env.example con tutte le variabili d’ambiente documentate per Docker/Unraid - Aggiunti script organize-docs.ps1/.sh per strutturare e spostare la documentazione in docs/ - Aggiornate e migliorate tutte le guide tecniche (Docker, Unraid, Git workflow, troubleshooting, verifica finale) - Documentazione ora pronta per ambienti di produzione, collaborazione e manutenzione
44 lines
1.3 KiB
PowerShell
44 lines
1.3 KiB
PowerShell
# ?? Documentation Organization Script
|
|
# Run this script to organize all documentation files
|
|
|
|
$docs = "docs"
|
|
|
|
# Create directory structure
|
|
$directories = @(
|
|
"installation",
|
|
"architecture",
|
|
"deployment",
|
|
"configuration",
|
|
"trading",
|
|
"development",
|
|
"troubleshooting",
|
|
"verification",
|
|
"api"
|
|
)
|
|
|
|
foreach ($dir in $directories) {
|
|
New-Item -ItemType Directory -Force -Path "$docs\$dir"
|
|
}
|
|
|
|
# Move files to appropriate directories
|
|
Write-Host "Moving documentation files..."
|
|
|
|
# Deployment docs
|
|
Move-Item -Path "DOCKER_QUICKSTART.md" -Destination "$docs\deployment\" -Force
|
|
Move-Item -Path "UNRAID_DEPLOYMENT.md" -Destination "$docs\deployment\" -Force
|
|
Move-Item -Path "DOCKER_BUILD_TEST.md" -Destination "$docs\deployment\" -Force
|
|
|
|
# Development docs
|
|
Move-Item -Path "GIT_WORKFLOW.md" -Destination "$docs\development\" -Force
|
|
Move-Item -Path "COMMIT_CHECKLIST.md" -Destination "$docs\development\" -Force
|
|
|
|
# Troubleshooting docs
|
|
Move-Item -Path "BROWSER_CACHE_GUIDE.md" -Destination "$docs\troubleshooting\" -Force
|
|
Move-Item -Path "SIDEBAR_TOGGLE_DEBUG.md" -Destination "$docs\troubleshooting\" -Force
|
|
|
|
# Verification docs
|
|
Move-Item -Path "FINAL_VERIFICATION.md" -Destination "$docs\verification\" -Force
|
|
|
|
Write-Host "? Documentation organized!"
|
|
Write-Host "See docs/README.md for index"
|