examples/travel-app/README.md
This is a Next.js project bootstrapped with create-next-app.
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:
# 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
Install dependencies using pnpm:
pnpm install
First, run the development server:
pnpm dev
Open http://localhost:3000 with your browser to see the result.
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.
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!
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.