Configuration
Settings come from environment variables with the prefix ONEOPEN_ (via pydantic-settings).
Environment variables
Variable |
Default |
Description |
|---|---|---|
|
|
Root data directory |
|
|
Default bind host for |
|
|
Default bind port |
|
|
Debug flag |
|
|
Application display name |
Examples
Windows (PowerShell):
$env:ONEOPEN_DATA_DIR = "D:\oneopen-data"
$env:ONEOPEN_PORT = "9000"
oneopen serve
Unix:
export ONEOPEN_DATA_DIR=/data/oneopen
export ONEOPEN_PORT=9000
oneopen serve
CLI flags (--host, --port, init --data-dir) override the corresponding defaults for that process.
Derived paths
Given data_dir:
Path |
Purpose |
|---|---|
|
SQLite database |
|
Fallback upload area |
|
Export artifacts |
|
Weights, SAM checkpoints, runs |
|
Default project location |
|
Training job JSON state |
See Data layout for more detail.
Binding beyond localhost
You can pass --host 0.0.0.0, but the product is designed as a local tool without authentication. Do not expose it on untrusted networks.