Examples
Overview

AionixOne Examples

Demo examples for each AionixOne service.

Quick Start (Dev Mode)

These examples run in development mode with relaxed authorization for easy exploration.

ServiceDescription
AionixFnServerless functions
StepflowWorkflow orchestration
ParamStoreParameter management
CredVaultCredential management
IgniterEvent triggers
OpenActAction connectors

Try It

# 1. Start server
./start.sh
 
# 2. Source environment
source .env
 
# 3. Run a demo
cd examples/aionixfn
aio fn deploy hello-python --code . --handler handler:main
aio fn invoke hello-python --data '{"name": "World"}'

Production Path (Auth Required)

For production use, AionixOne provides full policy-based authorization.

FeatureDescription
AuthAPI keys & policies

Production setup requires:

  1. Bootstrap admin with --bootstrap-admin
  2. Create API keys for users/agents
  3. Define policies for access control

See Auth Reference for details.

Getting Help

aio --help
aio fn --help
aio wf --help
aio auth --help