Skip to content
Juan Gonzalez-Gomez edited this page Mar 31, 2024 · 12 revisions

Contents

Usage

apio config [OPTIONS]

Description

Apio configuration commands

Options

Flag Long Flag Description
-l --list List all configuration parameters
-e --exe [default|native] Configure executables: default selects apio packages, native selects native binaries
-v --verbose [0|1] Verbose mode: 0 General, 1 Information

Examples

1. Show all configuration parameters

apio config --list

2. Enable native mode for executable binaries

apio config --exe native

3. Enable verbose mode 1

apio config --verbose 1

Profile file

The configurations are stored in the apio profile file, located in the apio home dir

  • Ex. in Linux: /home/obijuan/.apio/profile.json
  • Ex. in Windows: C:\Users\JANEL\.apio\profile.json

These are the contents of a typical profile.json file:

{
    "config": {
        "exe": "default",
        "verbose": "0"
    },
    "packages": {
        "oss-cad-suite": {
            "version": "0.0.9"
        }
    },
    "settings": {}
}

Clone this wiki locally