Spaces:
Sleeping
Sleeping
Create config.py
Browse files
config.py
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import os
|
| 2 |
+
|
| 3 |
+
# Salesforce Credentials
|
| 4 |
+
SALESFORCE_USERNAME = os.getenv("SALESFORCE_USERNAME", "[email protected]")
|
| 5 |
+
SALESFORCE_PASSWORD = os.getenv("SALESFORCE_PASSWORD", "Sati@1020")
|
| 6 |
+
SALESFORCE_SECURITY_TOKEN = os.getenv("SALESFORCE_SECURITY_TOKEN", "sSSjyhInIsUohKpG8sHzty2q")
|