Infrastructure: Implement master/dev/vX branching, save git path, and fix username casing

This commit is contained in:
Daniel Bedeleanu
2026-04-10 21:51:22 +03:00
parent 93edcc261b
commit 8a3783c7e9
3397 changed files with 57402 additions and 98 deletions

14
scratch/copy_logo.py Normal file
View File

@@ -0,0 +1,14 @@
import shutil
import os
src = "/Users/danielbedeleanu/.gemini/antigravity/brain/edc2a8fe-a092-4172-b93b-b75c7b690fac/media__1775837015390.jpg"
dst = "/Users/danielbedeleanu/_nu_Backup/_BEDE_/_programare_2026_/cu.AI/inventory/frontend/public/logo.png"
try:
if os.path.exists(src):
shutil.copyfile(src, dst)
print("Logo copied successfully.")
else:
print(f"Source file not found at {src}")
except Exception as e:
print(f"Error copying logo: {e}")