Skip to content

Latest commit

 

History

History
60 lines (40 loc) · 1.34 KB

README.md

File metadata and controls

60 lines (40 loc) · 1.34 KB

Tiny AI Example Worker: Todo List

TinyAI.id

Deploy to Cloudflare Workers

This is an example of a Cloudflare Worker that uses Cloudflare Workers KV to store a simple todo list. It is a part of the Tiny AI platform.

Try before you deploy

Visit tiny.technology and attach as Worker to your chat.

URL: https://tiny-ai-worker-todo-example.cagatay.workers.dev/openapi.json

Result should be similar: Tiny AI Worker Todo Example

Prerequisites

  • Node.js
  • Wrangler CLI
  • Cloudflare Workers account
  • Cloudflare Workers KV

Configuration

  • Create a new Cloudflare Workers KV namespace

https://developers.cloudflare.com/kv/reference/how-kv-works/

  • Update the wrangler.toml file with your Cloudflare account ID and KV namespace ID
kv_namespaces = [
  { binding = "TODO_LIST", id = "YOUR_KV_NAMESPACE_ID" }
]

Installation

git clone [email protected]:TinyAI-ID/tiny-ai-worker.git;
cd tiny-ai-worker;
npm install;

Usage

wrangler publish

Development

wrangler dev

License

MIT-0