31 lines
695 B
Batchfile
31 lines
695 B
Batchfile
@echo off
|
|
REM Batch script to create directory structure and run Python file generation
|
|
cd /d "C:\Users\Nabeel\Nextcloud\Projects\firefly_reports"
|
|
|
|
REM Create directory structure
|
|
echo Creating directory structure...
|
|
for %%D in (
|
|
"backend"
|
|
"backend\app"
|
|
"backend\app\routers"
|
|
"backend\app\clients"
|
|
"backend\app\services"
|
|
"frontend"
|
|
"frontend\src"
|
|
"frontend\src\components"
|
|
"frontend\src\services"
|
|
"frontend\src\pages"
|
|
"frontend\public"
|
|
"data"
|
|
) do (
|
|
if not exist "%%D" mkdir "%%D"
|
|
echo mkdir %%D
|
|
)
|
|
|
|
REM Run the Python file creator
|
|
echo.
|
|
echo Running Python file creator...
|
|
python inline_file_creator.py
|
|
|
|
pause
|