Initial commit
This commit is contained in:
30
CREATE_FILES.bat
Normal file
30
CREATE_FILES.bat
Normal file
@@ -0,0 +1,30 @@
|
||||
@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
|
||||
Reference in New Issue
Block a user