Dockerizing the project

This commit is contained in:
2026-03-04 10:47:06 +02:00
parent 519b683fc3
commit ced2950b60
7 changed files with 66 additions and 10 deletions
-9
View File
@@ -1,9 +0,0 @@
# app/utils.py
import string
import random
def generate_short_code(length=6):
characters = string.ascii_letters + string.digits
return ''.join(random.choice(characters) for _ in range(length))