Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.nexus.westyx.cloud/llms.txt

Use this file to discover all available pages before exploring further.

Welcome screen
1

Create your account

Sign up at nexus.westyx.dev with your work email or an existing identity provider.
2

Set up your tenant

After signing in, you will be prompted to create your tenant. This is your top-level billing and access boundary.Create tenant stepProvide the following:
FieldDescription
NameCompany, agency, or your own name if you’re an individual
Billing emailInvoices and payment notices go here
Billing addressRequired for invoice generation
Tax IDOptional - include your VAT number if applicable
Nexus is built for teams but works equally well for individuals and freelancers managing their own projects.
3

Create your first project

A project represents a single application or product - with its own services, environments, and member list.Create first project stepChoose a tier that matches your needs:
TierEnvironmentsNotes
freedevelop onlyGreat for getting started
xsdevelop + productionFirst paid tier
sdevelop + staging + productionAdds staging
m / l / xlAll environmentsFull scale
You can upgrade the tier at any time from Project Settings.All set screen
4

Create a service

Within your project, create a service for each deployable unit - a backend API, a frontend app, a worker, etc.Every service has a kind:
  • Backend - uses sk_live_ keys; can hold secrets, configs, and flags
  • Frontend - uses pk_live_ keys; configs and flags only (no secrets in the browser)
The service kind is immutable after creation.
5

Add your first secrets and configs

Navigate to the Secrets or Configs tab on your service detail page.
  • Secrets are encrypted at rest with AES-256-GCM and never appear in logs
  • Configs support types: string, number, boolean, json
  • Configs can reference secrets by key: {{secret:DB_PASSWORD}}
6

Generate an API key

Go to API Keys on your service and generate a key.Copy it - it is shown only once. Store it in your deployment environment as NEXUS_API_KEY or equivalent.
7

Install the SDK and connect

Install the SDK for your language and initialise the client with your service endpoint and API key.See the Quickstart for language-specific code samples, or browse the full SDK reference.