Update main.py
Browse files
main.py
CHANGED
|
@@ -18,9 +18,9 @@ app = FastAPI()
|
|
| 18 |
|
| 19 |
# Cloudinary configuration
|
| 20 |
cloudinary.config(
|
| 21 |
-
cloud_name="
|
| 22 |
-
api_key="
|
| 23 |
-
api_secret="
|
| 24 |
secure=True
|
| 25 |
)
|
| 26 |
|
|
|
|
| 18 |
|
| 19 |
# Cloudinary configuration
|
| 20 |
cloudinary.config(
|
| 21 |
+
cloud_name=os.getenv("cloudname"),
|
| 22 |
+
api_key=os.getenv("key"),
|
| 23 |
+
api_secret=os.getenv("secret"),
|
| 24 |
secure=True
|
| 25 |
)
|
| 26 |
|