What Is FB Software AI Engine?

Lesson 1 of 3

What Is FB Software AI Engine?

18:24 · Beginner · EN · 5 steps

Follow along

What the AI Engine actually is

Not a chatbot bolted onto WordPress. A framework that plans, asks permission, then writes.

The approval gate

Why nothing reaches the database until you say yes, and what happens when you say no.

Setting up the local stack

The compose file line by line. The volume names matter more than people expect.

services:
  odoo:
    image: odoo:19
    ports:
      - "8069:8069"
    volumes:
      - odoo-web-data:/var/lib/odoo

The permissions error you will hit

It is expected on first run. Here is the cause, and the fix that does not destroy your data.

sudo chown -R 101:101 ./addons

Checking it actually works

What a healthy container log looks like, so you can tell success from silence.

docker compose logs -f odoo

About this lesson

Before you start

  • Docker Desktop installed and running
  • A terminal you are comfortable in
  • About forty minutes
  • No Odoo experience needed
Running this on a live site?

Do not. Bring it up locally, break it there, and only move it once you have restored a backup at least once.

From this project

This tutorial comes out of building FB Software AI Engine.

View the project