Prisma CLI & ConfigurationCLI Command Reference
prisma info
$ prisma info
Display service information:
- Service name
- Service stage
- API endpoints (HTTP and Websocket)
Usage
prisma info
Flags
-e, --env-file ENV-FILE Path to .env file to inject env vars
-j, --json JSON Output
-s, --secret Print secret in JSON output (requires --json option)
Examples
Print information about current service
prisma info
Print information about current service in JSON
prisma info --json
Print information about current service in JSON and include service secret
prisma info --json --secret
The service secret is only printed if both the
--json
and--secret
flags are provided.