Fix: Rename directory to remove & character causing shell issues

Renamed ebook_backend&admin_panel to ebook_backend_admin_panel
  The & character was being interpreted by shell as background
  process operator, causing 'Dockerfile not found' errors in Coolify.
This commit is contained in:
richardtekula
2025-11-11 17:06:39 +01:00
parent a3b609eab7
commit f78c2199e1
35 changed files with 2 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
import random
import string
# def generate_coupon(length: int = 6) -> str:
# return ''.join(random.choices(string.ascii_uppercase + string.digits, k=length))
def generate_coupon():
return ''.join(random.choices(string.ascii_uppercase + string.digits, k=10))