create-flowdb
v0.1.10
Published
Create a new FlowDB application with one command
Maintainers
Readme
create-flowdb
Interactive CLI tool to scaffold new FlowDB applications.
Installation
npm install -g create-flowdbUsage
Create a new project:
npx create-flowdb my-appOr use the installed command:
create-flowdb my-appOptions
--yesor-y- Skip interactive prompts and use defaults
What Gets Generated
my-app/
├── flowdb/
│ ├── capabilities/
│ ├── workflows/
│ ├── agents/
│ └── schema/
├── src/
│ ├── App.tsx
│ ├── flowdb.ts
│ └── index.ts
├── public/
│ └── index.html
├── flowdb.config.json
├── package.json
├── tsconfig.json
└── README.mdQuick Start
After running create-flowdb:
cd my-app
npm install
npm run devDefault Configuration
The generated project uses:
- Runtime: Browser
- Storage: OPFS (with IndexedDB fallback)
- Distributed: Enabled by default
- Capabilities: Search enabled, Vector disabled
License
MIT
