Imtiaj Bin Aoual avatar

Imtiaj Bin Aoual

Community

@Imtiajrex · Chittagong, Bangladesh

10Followers
|
83Public Repos
|
6Published Skills

<script> alert("Programmer?") </script>

Skills Distribution
DomainCloud & Comp...Cloud & Compute In.. (40%)Data Systems & Dat.. (30%)Developer Tooling .. (20%)UI/UX & Creative M.. (10%)

Agent Skills by Imtiaj Bin Aoual

Showing 6 vetted skills indexed across 1 GitHub repositories.

Frequently Asked Questions About Imtiaj Bin Aoual

FAQPage Schema
What tasks can I accomplish with the Appflare skill suite?▼

You can scaffold and deploy Appflare backends on Cloudflare Workers, define schema DSL tables and relations, write query/mutation/cron/scheduler handlers with Zod validation, run typed ctx.db operations with aggregates and transactions, and connect React clients with realtime subscriptions and Better Auth.

Who are the Appflare skills designed for?▼

They target full-stack and backend engineers building on Cloudflare Workers who use the Appflare generate-first framework. Anyone editing appflare.config.ts, importing from appflare or appflare/react, or writing handlers against D1 with Drizzle benefits from these skills.

What are the runtime prerequisites for Appflare deployment?▼

Appflare requires Bun version 1.3.9 or higher plus Wrangler authenticated to a Cloudflare account. The Bun CLI provides build, dev --watch, migrate with local/remote/preview flags, migrate:custom, and add-admin commands, with deployment completed through wrangler deploy.

How do Appflare database migrations and schema changes work?▼

Define tables with the schema DSL using column builders like v.int, v.string, and v.enum, plus relations via v.one, v.many, and v.manyToMany. Apply changes with appflare migrate for generated migrations or migrate:custom for hand-written SQL against D1.

How do frontends consume an Appflare backend?▼

Create a typed client with new Appflare() providing endpoint, wsEndpoint, and bearer-token storage, then call appflare.queries and appflare.mutations. React apps use useQuery, useInfiniteQuery, and useMutation hooks built on TanStack Query, with realtime subscriptions and appflare.auth login.