Before running the project, configure the required environment variables and dependencies.
Copy the example environment file and set the required API key(s):
cp .env.example .env.local
# then open .env.local and set the required API_KEY and other credentialsCreate any external service accounts needed and add their keys to .env.local. For production use, avoid disposable email addresses and follow the service provider's terms.
Install packages and run the drizzle-kit generators/migrations:
npm install
npx drizzle-kit generate
npx drizzle-kit migrateNow the project should be ready to run. See project scripts (package.json) for available start/dev commands.
or simple do
npm run dev