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

11
run_file_creator.py Normal file
View File

@@ -0,0 +1,11 @@
#!/usr/bin/env python3
"""Direct Python runner to create all files without shell execution"""
import sys
import os
# Change to project directory
os.chdir(r'C:\Users\Nabeel\Nextcloud\Projects\firefly_reports')
# Import and run the create_all_files script
import create_all_files
print("\n✅ All source files created successfully!")