Skip to content

Create a project

Everything you send to Amlexia is scoped to a project inside an organization.

Organizations

  • Created when you sign up (or join via invite).
  • Map to your company or team in Clerk.
  • Billing and members are org-level when you upgrade.

Projects

Each project has:

ItemDescription
SDK keySecret am_... used by your app to ingest events
SettingsRetention, alert defaults, feature toggles
Data isolationEvents from project A never appear in project B

Create a new project

  1. Log in at app.amlexia.com.
  2. Open the org switcher → Create project (or complete onboarding).
  3. Name the project (e.g. production-api, staging).
  4. Copy the SDK key — store it in your secrets manager.

Rotate a key

  1. Project SettingsRegenerate SDK key.
  2. Update AMLEXIA_SDK_KEY in your deployment.
  3. Redeploy all services that ingest to that project.

Old keys stop working immediately after regeneration.

Multiple environments

Recommended pattern:

EnvironmentApproach
ProductionOne project prod-api
StagingSeparate project staging-api
Local devSame staging project or local ingest URL with staging key

Use AMLEXIA_ENVIRONMENT on events to filter production vs staging within a project if you prefer a single project.

Next