Scripts to help with development

This commit is contained in:
2025-10-19 16:05:46 +02:00
parent d0bb87f66d
commit f27d15a828
3 changed files with 348 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
@echo off
echo Generating frontend structure...
echo.
set OUTPUT=frontend-structure.txt
echo Frontend Folder Structure > %OUTPUT%
echo Generated: %date% %time% >> %OUTPUT%
echo ============================================================================== >> %OUTPUT%
echo. >> %OUTPUT%
tree /F /A static >> %OUTPUT%
echo.
echo ✅ Structure saved to %OUTPUT%
echo.
echo Opening file...
notepad %OUTPUT%