Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.laportenard.com/llms.txt

Use this file to discover all available pages before exploring further.

Prerequisites

  • Node.js 20+
  • Python 3.8+ with Odoo 12
  • Rust toolchain (for Tauri desktop builds)
  • PostgreSQL

Frontend

1

Install dependencies

cd nu_pos_react
npm install
2

Start the dev server

npm run dev
The app runs at http://localhost:3000.
3

Or launch the Tauri desktop window

npm run desktop:dev

Backend

1

Install the Odoo module

Copy or symlink nu_restaurant_pos/ into your Odoo addons path.
2

Upgrade the module

./odoo-bin -d <db> -u nu_restaurant_pos \
  --addons-path=addons,extra_addons --stop-after-init

Sync hub

1

Install dependencies

cd nu_pos_hub
npm install
2

Start the hub

npm run dev

Running tests

cd nu_pos_react
npm run test:run