Task management app with Expo/React Native: - 3 tabs: Inbox, Lists, Settings - Task CRUD with subtasks, priorities, due dates - SQLite database via Drizzle ORM - i18n FR/EN (French default) - Dark mode support (light/dark/system) - Simpl- brand color palette (bleu/crème/terracotta) - NativeWind (Tailwind) styling - EAS Build config for Android (APK + AAB) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
8 lines
182 B
TypeScript
8 lines
182 B
TypeScript
import type { Config } from 'drizzle-kit';
|
|
|
|
export default {
|
|
dialect: 'sqlite',
|
|
driver: 'expo',
|
|
schema: './src/db/schema.ts',
|
|
out: './src/db/migrations',
|
|
} satisfies Config;
|