Skip to content

Lua with SQLite template

This template demonstrates how to create a Lua process that interacts with SQLite for basic CRUD operations, and a React frontend to communicate with the process. It provides a simple books management system as an example.

lua sqlite frontend

Features

  • Lua Books Manager Process to exemplify basic CRUD operations with SQLite.
  • React + Vite Frontend to interact with the process.

How to build, deploy and run

Install dependencies

npm install

Build the Lua process

chmod +x ./ao/process-name/scripts/build.sh
 
npm run process-name:build

Deploy the Lua process

chmod +x ./ao/process-name/scripts/deploy.sh
 
npm run process-name:deploy

Inject the process id into the frontend app

npm run process-name:inject

Run the frontend app

npm run frontend:dev