Skip to content

Commit

Permalink
present api and doctorRequest
Browse files Browse the repository at this point in the history
  • Loading branch information
gvd22 committed Mar 15, 2024
1 parent 1eb4716 commit 6076e6e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions present-vcs-api/main.py
Expand Up @@ -8,8 +8,8 @@
app = FastAPI()

# Use environment variables for sensitive information
DIRECTUS_URL = os.getenv("DIRECTUS_URL", "http://localhost:8055")
EMAIL = os.getenv("EMAIL", "admin@example.com")
DIRECTUS_URL = os.getenv("DIRECTUS_URL", "https://directustesting.proudcoast-33470e41.switzerlandnorth.azurecontainerapps.io")
EMAIL = os.getenv("EMAIL", "admin@admin.com")
PASSWORD = os.getenv("PASSWORD", "d1r3ctu5")

# Authentication function
Expand Down
4 changes: 2 additions & 2 deletions present-vcs-api/testing/test3.py
Expand Up @@ -2,8 +2,8 @@
from datetime import datetime

# Directus credentials and URL
directus_url = "http://localhost:8055"
email = "admin@example.com"
directus_url = "https://directustesting.proudcoast-33470e41.switzerlandnorth.azurecontainerapps.io"
email = "admin@admin.com"
password = "d1r3ctu5"

def authenticate_directus(directus_url, email, password):
Expand Down

0 comments on commit 6076e6e

Please sign in to comment.