We believe that databases will become the infrastructure of generative AI in the same way as computing power. By utilizing database capabilities, every enterprise, organization, and even individual can train their own private AI assistant to gain a competitive edge.
Native Integrated AI, Powered by GPT-3.5-turbo
- Chat 2 App. "Create a project management app for me"
- Chat 2 Chart. "Analyze the data in the order table using a bar chart"
- Chat 2 View. "I want to see the schedule for the past week and only display participants"
- Chat 2 Action. "After the order is paid and completed, an email notification will be sent to the customer"
You own your data, in spite of the cloud
- Data storage local first
- Offline desktop client support
- Sync & collaboration to cloud in just one click
Build in minutes scale to millions
- Support for data sets of over one million rows
- Support database indexes
- Support server side render
Designed for teams
- Seamless real-time collaboration among multiple people
- Thoughtful and detailed permission control ability
Expand infinite possibilities
- Backend-less programming capability based on React
- Customize your own application with extremely low cost
- Extremely easy-to-use script extensions mode
Empower data-driven workflows effortlessly and seamlessly
- Design your workflow with AI or Visual programming
- Super easy retrieve data from table
Seamless integration with the software you are familiar with
- BI tools like Metabase PowerBi...
- No-code tools like appsmith...
- Direct retrieve data with native sql
Choose the database you like
- Sqlite, PostgreSQL, MySQL, TiDB, Snowflake...
.
├── apps
│ ├── nextjs-app (front-end, include web and electron app )
│ └── nestjs-backend (backend, running on server or inside electron app)
└── packages
├── common-i18n (locales...)
├── core (share code and interface between app and backend)
├── sdk (sdk for extensions)
├── db-main-prisma (schema, migrations, prisma client)
├── eslint-config-bases (to shared eslint configs)
└── ui-lib (storybook)
yarn install
cd packages/db-main-prisma
# generate ts interface
yarn prisma generate
# create db schema
yarn prisma-db-push
# fill seed data
yarn prisma-db-seed
config openai ai endpoint and key
cd apps/nextjs-app
copy .env.example .env.development.local
open .env.development.local
OpenAI is not available in some country. To solve this problem, we recommend using https://api-openai.teable.io as an endpoint. This is an unrestricted proxy deployed on Vercel.
OPENAI_API_KEY=your-api-key
OPENAI_API_ENDPOINT=openai-endpoint
you should only start backend, it will start next server for front-end automatically, file change will be auto reload
cd apps/nestjs-backend
tsc --build --watch
# run in a new terminal
yarn dev
Goto developer readme
If you are enjoying some this project in your company, I'd really appreciate a sponsorship, a coffee or a dropped star. That gives me some more time to improve it to the next level.
AGPL-3.0