Health Universe
  • Core Concepts
    • Overview of Health Universe
    • How Health Universe Works
  • Building Apps in Health Universe
    • Getting started with Health Universe
      • Create a Health Universe Account
      • Create a Github Account
      • Link your Github Account to your Health Universe Account
    • Creating a Workspace
    • Developing your Health Universe App
      • Streamlit vs FastAPI
      • Working in Streamlit
        • Typical Project Setup
        • Your First Health Universe App
        • Streamlit Best Practices
      • Working in FastAPI
        • Typical Project Setup
        • Your First Health Universe App
        • Navigator FastAPI best practices
    • Deploying your app to Health Universe
      • Deploying to Health Universe
      • Secret Management
      • Connecting to an LLM
      • Connecting to an external data source
  • Testing your app
  • Re-deploying your app
  • Document your app
  • Deleting your App on Health Universe
  • Additional resources
    • Data Formats, Standards & Privacy
    • External Tools and Libraries
Powered by GitBook
On this page

Was this helpful?

Testing your app

PreviousConnecting to an external data sourceNextRe-deploying your app

Last updated 21 days ago

Was this helpful?

After deploying or redeploying your app, follow these steps to test it and confirm everything is working as expected:

1. For Streamlit apps:

  1. Go to your app on .

  2. Click the Launch App button to open it in a new tab.

  3. Interact with the app to confirm it’s running correctly and that your updates appear as expected.

  4. You should also fill in the description information on the apps page so that others can understand the app and know how best to use it.

For FastAPI apps:

  1. FastAPI apps do not launch directly from the app page — they are launched within Navigator.

    1. Launch Navigator

    2. Search for app (in search bar)

    3. Add App to context

    4. Run app.

2. Review Deployment Logs (Optional but Recommended)

If something doesn’t look right, or just to be thorough:

  1. In the left-hand menu, click Deployments.

  2. Locate the Production deployment box.

  3. Click Build Logs to review details of the most recent deployment.

🛠️ Use the logs to troubleshoot issues such as build errors, missing dependencies, or runtime exceptions.

Health Universe