Managing multiple services

Create new services with

Copy

empctl services init --name string

Upon deployment, the services can interact with each other using the service name as the host, making it easy to build complex applications with multiple services.

Copy

import requests

response = requests.get("http://service-name:8000/")

Ingress

Services can be exposed to the public internet through a managed Ingress that is not available on the Free Tier.

Last updated