Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
mrwabnalas40
/
Ranoosh
like
1
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
16b7dfe
Ranoosh
/
config.py
mrwabnalas40
Upload 45 files
889459c
verified
12 days ago
raw
Copy download link
history
blame
Safe
262 Bytes
# config.py — نقطة مركزية لإعدادات المشروع
import
os, random
# مصدر الحقيقة الوحيد لمنفذ الخدمة
PORT =
int
(os.getenv(
"CPU_PORT"
, os.getenv(
"PORT"
,
"0"
)))
if
PORT ==
0
:
PORT = random.randint(
5000
,
9999
)