Teal Typed with SQLite template
This template demonstrates how to build a Teal-typed Lua process that interacts with SQLite, along with a React frontend for user interaction. Teal is a typed dialect of Lua that compiles to Lua, offering static typing and other language features while maintaining full compatibility with standard Lua.

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 installnpm i -g https://get_ao.g8way.ioAfter installation, simply run:
aosThis will setup a new keyfile for you, and then you can export it as an environment variable
export WALLET_JSON="$(cat ~/.aos.json)"More information can be found here
Build the Lua process
chmod +x ./ao/process-name/scripts/build.sh
npm run process-name:buildDeploy the Lua process
chmod +x ./ao/process-name/scripts/deploy.sh
npm run process-name:deployInject the process id into the frontend app
npm run process-name:injectRun the frontend app
npm run frontend:dev