Initial commit

This commit is contained in:
nabeel
2026-05-27 13:58:05 +10:00
commit c2202ea0bb
89 changed files with 28855 additions and 0 deletions

16
create_dirs.py Normal file
View File

@@ -0,0 +1,16 @@
import os
import pathlib
# Create directory structure for backend
backend_dir = pathlib.Path(r"C:\Users\Nabeel\Nextcloud\Projects\firefly_reports\backend")
app_dir = backend_dir / "app"
routers_dir = app_dir / "routers"
clients_dir = app_dir / "clients"
services_dir = app_dir / "services"
# Create all directories
for directory in [backend_dir, app_dir, routers_dir, clients_dir, services_dir]:
directory.mkdir(parents=True, exist_ok=True)
print(f"Created: {directory}")
print("All directories created successfully!")