AionixOne Examples
Demo examples for each AionixOne service.
Quick Start (Dev Mode)
These examples run in development mode with relaxed authorization for easy exploration.
| Service | Description |
|---|---|
| AionixFn | Serverless functions |
| Stepflow | Workflow orchestration |
| ParamStore | Parameter management |
| CredVault | Credential management |
| Igniter | Event triggers |
| OpenAct | Action 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.
| Feature | Description |
|---|---|
| Auth | API keys & policies |
Production setup requires:
- Bootstrap admin with
--bootstrap-admin - Create API keys for users/agents
- Define policies for access control
See Auth Reference for details.
Getting Help
aio --help
aio fn --help
aio wf --help
aio auth --help