repositories
loading repo index
repositories
loading repo index
repository
loading code, commits, and activity
public Clawd ADK gateway launch mirror
stars
latest
clone command
git clone gitlawb://did:key:z6Mkq5mY...iFZ5/my-project-publ...git clone gitlawb://did:key:z6Mkq5mY.../my-project-publ...2fa351d6docs: add automaton and perps launch sources15d ago| // Run: `pnpm drizzle-kit generate` to produce SQL migrations. |
| #3 | // Provide DATABASE_URL in .env (Postgres: Neon / Supabase / local). |
| #4 |
| #5 | import type { Config } from 'drizzle-kit'; |
| #6 |
| #7 | export default { |
| #8 | schema: './schema/drizzle.ts', |
| #9 | out: './drizzle', |
| #10 | dialect: 'postgresql', |
| #11 | dbCredentials: { |
| #12 | url: process.env.DATABASE_URL ?? 'postgresql://localhost:5432/solana_clawd', |
| #13 | }, |
| #14 | strict: true, |
| #15 | verbose: true, |
| #16 | } satisfies Config; |
| #17 |