Back to Mastra

Required API Keys

examples/travel-app/README.md

2025-12-182.5 KB
Original Source

This is a Next.js project bootstrapped with create-next-app.

Getting Started

Prerequisites

Before running the application, you need to set up your environment variables. Create a .env.local file in the root directory with the following variables:

env
# Required API Keys
RAPID_API_KEY=your_rapid_api_key_here
OPENAI_API_KEY=your_openai_api_key_here
ANTHROPIC_API_KEY=your_anthropic_api_key_here

# Optional - CSV file path for attractions data
# Defaults to src/data/city-data.csv if not specified
CSV_FILE_PATH=src/data/city-data.csv

Getting API Keys

Installation

Install dependencies using pnpm:

bash
pnpm install

Running the Development Server

First, run the development server:

bash
pnpm dev

Open http://localhost:3000 with your browser to see the result.

Database

The application uses LibSQL with a local file database (file:mastra.db). The database file will be automatically created when you first run the application. No additional setup or Docker containers are required!

You can start editing the page by modifying app/page.tsx. The page auto-updates as you edit the file.

This project uses next/font to automatically optimize and load Geist, a new font family for Vercel.

Learn More

To learn more about Next.js, take a look at the following resources:

You can check out the Next.js GitHub repository - your feedback and contributions are welcome!

Deploy on Vercel

The easiest way to deploy your Next.js app is to use the Vercel Platform from the creators of Next.js.

Check out our Next.js deployment documentation for more details.