Skip to content
Knowledge Base

Launch Knowledge Base

Launch Glossary

Short definitions for common launch terms across web delivery, cloud runtime, backend services, data, security, observability, and release operations.

5 min readAudience: New builders who want quick definitions while reading the Launch Knowledge Base or product documentationUpdated 2026-05-20

This glossary defines terms used across the Launch Knowledge Base. It is not a replacement for the deeper guides. Use it when a word blocks your reading, then return to the article you were using.

Build and deployment

TermMeaning
ArtifactThe output of a build that gets deployed, such as static files, a container image, or an app binary
BuildThe process that transforms source code into a deployable artifact
DeployThe act of placing an artifact into an environment where it can run or be served
EnvironmentA deploy target such as development, staging, or production
ProductionThe environment real users depend on
RuntimeThe system that executes the app, such as a server, function, container, browser, or mobile OS
RollbackReturning users or traffic to a previous known-good release
Smoke testA small set of checks that proves a release is not obviously broken

Web delivery

TermMeaning
DomainA human-readable internet name such as example.com
HostnameA full DNS name such as www.example.com or app.example.com
Apex domainThe root domain without a subdomain, such as example.com
DNSThe system that maps hostnames to routing information
A recordDNS record that points a hostname to an IPv4 address
AAAA recordDNS record that points a hostname to an IPv6 address
CNAMEDNS record that aliases one hostname to another hostname
TXT recordDNS record used to store text values for verification or policy
HTTPProtocol browsers use to request web resources
HTTPSHTTP protected by TLS encryption and certificate validation
TLS certificateCredential that helps browsers trust the server for a hostname
CDNDistributed delivery network that can cache and serve content near users
CacheStored response reused to make future requests faster

Backend and data

TermMeaning
APIInterface clients use to ask the backend to do work
BackendServer-side capabilities such as APIs, auth, data, jobs, and integrations
DatabaseDurable system for storing structured application data
SchemaStructure and rules of stored data
MigrationVersioned change to a database schema or data structure
IndexData structure that makes selected reads faster
TransactionGroup of database operations that succeed or fail together
Connection poolReusable group of database connections
Object storageStorage for files such as images, videos, exports, and uploads
QueueSystem for recording work that should run asynchronously
CronScheduled task that runs at a fixed time or interval
WebhookHTTP callback sent by one system to notify another system about an event

Identity and security

TermMeaning
AuthenticationProving who a user or system is
AuthorizationDeciding what an authenticated user or system may do
SessionServer-recognized login state for a user
CookieBrowser storage mechanism often used for sessions
TokenCredential-like value used to authorize or identify a request
SecretSensitive configuration value such as a password, key, or signing token
Least privilegeGiving each user or credential only the access it needs
CORSBrowser security mechanism controlling which origins can call an API
OriginCombination of protocol, hostname, and port
OAuthCommon authorization framework used by many login and integration providers

Observability and operations

TermMeaning
LogRecord of something that happened in the system
MetricNumeric measurement over time
TraceRecord of how a request moves through components
Error groupCollection of similar errors treated as one pattern
Request idIdentifier used to connect a user-visible failure to logs
Health checkEndpoint or probe that reports whether a service is available
IncidentUser-impacting or production-impacting failure
RestoreRecovering data or service from a backup or known state
BackfillFilling missing or newly required data after a schema or logic change

Cloud and platform

TermMeaning
Control planeManagement layer that configures, records, and orchestrates resources
Execution planeRuntime layer that actually serves traffic or runs workloads
ServerlessRuntime model where the platform manages much of the server provisioning and scaling
ContainerPackaged runtime environment for an application and its dependencies
Load balancerNetwork component that routes traffic to services
Secret managerManaged service for storing and accessing secrets
Service accountMachine identity used by services and automation
TenantIsolated customer, workspace, or organization boundary