Aureis owl emblem Aureis The post-fiat terminal
// operator docs · v1.1.7

Install, verify, recover.

Everything past the front door: system requirements, the Docker runtime, the six-step install, post-install verification, troubleshooting, and the complete artifact set with checksums. For the product story, head back to the terminal.

// before you begin

System requirements.

Aureis is Windows-first; its engine runs inside a Docker container — a pinned Python 3.12 runtime, a CCXT market layer, and an optional local LLM stack. Docker Desktop is required. Plan capacity around Docker and the engine, not the UI.

Operating system

Windows 11 (x64)

64-bit Windows 11 only. Server 2022 is supported for headless paper-trading. Not built or tested against Windows 10, Apple Silicon, or Linux.

Container runtime · required

Docker Desktop (WSL2)

The engine runs in a Docker container, so Docker Desktop must be installed and running before launch. On Windows it uses the WSL2 backend, enabled during Docker setup.

Hardware baseline

16 GB RAM, 4 modern cores

For the local LLM and full bot fleet, 32 GB RAM and an 8-core CPU are recommended. NVIDIA RTX 30-series or newer (CUDA 12+) accelerates inference; CPU-only works but is slower for chat.

Disk space

~20 GB free on system drive

The app is small, but the engine image (~3.3 GB) plus Docker Desktop’s WSL2 virtual disk consume real space, and WSL2 grows on demand. Reserve headroom for models, OHLCV cache, and trade history.

Network

Outbound HTTPS to exchanges

First launch downloads the engine image once (~680 MB compressed) unless bundled. Live trading needs reachability to your configured exchange via CCXT. The local LLM runs offline; cloud fallback only fires if explicitly configured.

// required runtime · install first

Aureis runs its engine inside Docker.

The desktop app is a thin control surface. The trading engine, Neural Brain Matrix memory, bot fleet, and local LLM stack run inside a Docker container Aureis supervises for you. Docker Desktop must be installed and running before you start Aureis — otherwise the engine cannot boot and the app waits at startup.

Why a container

Dependencies that just work

Aureis depends on a precise Python 3.12 runtime, native trading/ML libraries, and a market-data stack that is brittle to install per-machine. A prebuilt image means every operator runs the exact same tested environment — no missing DLLs, no compiler mismatches.

Why a container

Isolated & reproducible

The engine is pinned byte-for-byte and SHA-256-verified before it loads. Trades, keys, and memory live in mounted host folders while the runtime stays sealed — so an upgrade can never half-patch your machine and a bad release rolls back cleanly.

Why a container

Clean on your machine

The runtime lives in the container, not scattered across your system, so Aureis does not pollute your global Python, PATH, or services. Removing Aureis is just deleting the app and its image.

Why a container

GPU when you want it

The default image is CPU/cloud-first so it boots fast anywhere. With an NVIDIA GPU, the same model opts into local GPU inference and RL training (Docker Desktop + WSL2 GPU + NVIDIA Container Toolkit) without changing the rest of the app.

  1. Install Docker Desktop using the button above, then complete setup (it enables the WSL2 backend — accept the prompt and reboot if asked).
  2. Start Docker Desktop and wait until it reports "running" (the tray whale stops animating). Docker must be running, not just installed.
  3. Then launch Aureis. First start pulls and loads the verified engine image once; later launches reuse the cached image and boot in seconds.
// install steps

Deploy Aureis in six steps.

  1. Install and start Docker Desktop (see above). The engine runs in a container, so Docker must be installed and running before the app can boot.
  2. Download the complete x64 installer from the release table below (Aureis-Setup-1.1.7.exe).
  3. Verify the SHA-256 before running it: certutil -hashfile Aureis-Setup-1.1.7.exe SHA256. Match the digest to the value in SHA256SUMS.txt.
  4. Run the installer. Accept the license and choose the location (default %LOCALAPPDATA%\Aureis). This lays down the desktop app; the engine loads as a Docker container on first launch.
  5. Launch Aureis with Docker Desktop running. First launch loads the containerized engine — if not bundled it downloads once (~680 MB) and SHA-256-verifies, which can take a few minutes; later launches boot in seconds.
  6. Sign in with your operator credentials. Aureis provisions a per-user data directory under %APPDATA%\Aureis for the Neural Brain Matrix, bot configs, and trade history.
// post-install verification

Confirm the install before going live.

A successful install is not yet a successful trading deployment. Walk this checklist before enabling live trading on real capital.

1. Engine reachable

With Docker Desktop running, open Neural Chat. The status pill should read "Backend ready" within ~60 seconds once the engine container is healthy. If it stays on "Booting", confirm Docker is running, then check %APPDATA%\Aureis\backend.log.

2. LLM responds locally

Type a short message in chat. The first response confirms the local LLM (Ollama / llama.cpp) inside the engine container is running. Cloud fallback is optional and disabled by default.

3. Bot fleet seeded

Open the Bots panel. You should see the default fleet (volatility_scalper, breakout_tracker, smc_reversal, grid_integrator, tdi_mfi_reversal) all in paper_trading mode.

4. Exchange connectivity

Configure exchange API keys under Settings → Exchanges. The connectivity probe must pass before flipping any bot to live mode. Live trading without a successful probe is blocked.

// troubleshooting

If Windows blocks Aureis, recover here.

Most common: Windows blocked the launch

Installs, but the shortcut does nothing

Double-clicking the shortcut produces no window, but launching C:\Program Files\Aureis\Aureis.exe from a terminal works. SmartScreen, Defender, or third-party AV has placed a "Mark-of-the-Web" hold on the files.

One-click recovery: download the launch helper, right-click Help-Aureis-Launch.cmd and choose Run as administrator. It unblocks every file in C:\Program Files\Aureis\, optionally adds a Defender exclusion, then launches Aureis.

Save both into the same folder. Double-click the .cmd only — the .ps1 is invoked automatically.

SmartScreen warning during install

"Windows protected your PC"

Click More info then Run anyway. The installer is Authenticode-signed, but SmartScreen reputation accrues with download volume. If in doubt, verify the SHA-256 against SHA256SUMS.txt: certutil -hashfile Aureis-Setup-1.1.7.exe SHA256.

Two folders appeared on your Desktop

Don’t extract the installer — run it

If you see $PLUGINSDIR and an Aureis folder, the installer was extracted instead of run. NSIS installers are technically archives. Delete those folders, re-download Aureis-Setup-1.1.7.exe, and double-click it (or right-click → Run as administrator) — do not extract.

Antivirus quarantined Aureis

Norton, Avast, McAfee, Bitdefender, ESET…

Add C:\Program Files\Aureis as an excluded path in your AV product (usually under "Settings → Exclusions / Allowed Items / Trusted Locations"). On Windows Defender, the launch helper above does this for you with admin elevation. Then re-launch via the shortcut.

Engine won’t start

"Waiting for engine" / Docker not detected

The engine runs in Docker, so Docker Desktop must be running before launch. Open Docker Desktop, wait until the tray whale reports "running", then relaunch Aureis. On a true first launch the engine image downloads once before the app is ready.

Backend never readies

Stuck on "NEURAL UPLINK FAILURE"

The UI is up but the FastAPI backend at http://127.0.0.1:8000 is not responding. Read the tail of %LOCALAPPDATA%\Aureis\backend.log for the python exception. Common causes: port 8000 occupied, AV locking python.exe, or a corrupted SQLite schema (auto-repaired since 1.1.0).

Local LLM very slow

Chat responses take >30s

Aureis defaults to local-first execution with a 5s timeout before cloud fallback (if configured). On CPU-only systems, expect slower local generation — consider enabling cloud fallback for chat-heavy workflows.

Failed update

Installer reports a checksum mismatch

Re-download over a clean network and re-verify SHA-256 with certutil. A persistent mismatch indicates a corrupted download or CDN propagation lag — wait a few minutes and retry.

// full artifact set · 1.1.7

Every published artifact.

Direct artifacts, update metadata, SHA-256 checksums, and a machine-readable release manifest — so installs are inspectable instead of opaque.

Windows 64-bit complete installer (recommended)

Single-file Windows build with the full runtime bundled inside. No first-launch runtime download required.

Aureis-Setup-1.1.7.exe 245.55 MB
Download
SHA-256 checksums

Cryptographic checksums for every published binary in this release. Verify locally before installing.

SHA256SUMS.txt 0.00 MB
Open
App update manifest

Compact JSON metadata for in-app update prompts and release checks.

manifest.json 0.00 MB
Open
Electron update manifest

Published update metadata for release channels.

latest.yml 0.00 MB
Open
R2 release manifest

Machine-readable artifact inventory for this public release.

r2-upload-manifest.json 0.00 MB
Open