Update app.py
Browse files
app.py
CHANGED
@@ -9,10 +9,10 @@ import base64
|
|
9 |
|
10 |
app = FastAPI()
|
11 |
|
12 |
-
|
13 |
|
14 |
imagekit = ImageKit(
|
15 |
-
public_key=public_key,
|
16 |
private_key=private_key,
|
17 |
url_endpoint=url_endpoint
|
18 |
)
|
|
|
9 |
|
10 |
app = FastAPI()
|
11 |
|
12 |
+
|
13 |
|
14 |
imagekit = ImageKit(
|
15 |
+
public_key=os.environ.get("public_key"),
|
16 |
private_key=private_key,
|
17 |
url_endpoint=url_endpoint
|
18 |
)
|