Asoba Ona Terminal

Getting Started

Quick start guide for developers to get up and running with Ona Terminal CLI.

Overview

This guide will help you install, configure, and start using the Ona Terminal CLI for energy asset management and forecasting.

Prerequisites

System Requirements

AWS Requirements

Quick Installation

Step 1: Install Ona Terminal CLI

# Install the CLI tool
pip3.10 install ona-terminal

# Verify installation
ona --version

Step 2: Configure API Key

# Configure your API key
ona configure --api-key YOUR_API_KEY

# Verify configuration
ona configure --list

Step 3: Test Connection

# Test API connectivity
ona status

# Check available commands
ona --help

First Steps

1. Upload Historical Data

# Upload your first dataset
ona upload historical \
  --file your_data.csv \
  --customer-id your-customer-id \
  --manufacturer SolarEdge \
  --location CapeTown

2. Train a Model

# Train a forecasting model
ona train \
  --customer-id your-customer-id \
  --location CapeTown \
  --manufacturer SolarEdge \
  --serial-number SE123456

3. Generate Forecast

# Generate a 24-hour forecast
ona forecast \
  --customer-id your-customer-id \
  --horizon 24 \
  --model-type lstm

Configuration

Environment Variables

# Required environment variables
export ONA_API_KEY="your-api-key"
export ONA_REGION="af-south-1"
export ONA_ENVIRONMENT="production"

# Optional environment variables
export ONA_LOG_LEVEL="INFO"
export ONA_TIMEOUT="30"
export ONA_RETRY_ATTEMPTS="3"

Configuration File

Create ~/.asoba/config.yaml:

api:
  key: your-api-key
  region: af-south-1
  environment: production
  timeout: 30
  retry_attempts: 3

logging:
  level: INFO
  file: ~/.asoba/logs/ona.log

storage:
  upload_dir: ~/.asoba/uploads/
  cache_dir: ~/.asoba/cache/

Development Setup

Local Development Installation

# Clone the repository
git clone https://github.com/asobacloud/terminal.git
cd terminal

# Create virtual environment
python3.10 -m venv venv
source venv/bin/activate  # On Windows: venv\Scripts\activate

# Install in development mode
pip install -e .

# Install development dependencies
pip install -r requirements-dev.txt

Testing Your Installation

# Run the test suite
python -m pytest tests/

# Run specific tests
python -m pytest tests/unit/test_cli.py

# Run with coverage
python -m pytest --cov=src/ona_terminal

Common Commands

Data Management

# List uploaded datasets
ona data list --customer-id your-customer-id

# Get dataset details
ona data info --dataset-id dataset-123

# Delete dataset
ona data delete --dataset-id dataset-123

Model Management

# List trained models
ona models list --customer-id your-customer-id

# Get model details
ona models info --model-id model-123

# Delete model
ona models delete --model-id model-123

Forecast Management

# List forecasts
ona forecasts list --customer-id your-customer-id

# Get forecast results
ona forecasts get --forecast-id forecast-123

# Export forecast data
ona forecasts export --forecast-id forecast-123 --format csv

Troubleshooting

Common Issues

Python Version Issues

# Check Python version
python3.10 --version

# If system Python is 3.9, install 3.10
sudo apt update
sudo apt install python3.10 python3.10-pip python3.10-venv

API Connection Issues

# Test API connectivity
curl -H "x-api-key: YOUR_API_KEY" \
  https://yn058ezh38.execute-api.af-south-1.amazonaws.com/prod/health

# Check AWS credentials
aws sts get-caller-identity

Permission Issues

# Check file permissions
ls -la ~/.asoba/

# Fix permissions if needed
chmod 700 ~/.asoba/
chmod 600 ~/.asoba/config.yaml

Getting Help

# Get help for any command
ona --help
ona upload --help
ona train --help

# Enable debug logging
export ONA_LOG_LEVEL="DEBUG"
ona status

Next Steps

1. Explore the API Reference

2. Deploy to Production

3. Join the Community

Support


Get Help & Stay Updated

Contact Support

For technical assistance, feature requests, or any other questions, please reach out to our dedicated support team.

Email Support Join Our Discord

Subscribe to Updates

* indicates required