The Orcish Meal Planner is an easy-to-use app that helps you create daily meal plans based on the user data.
To begin, install the required dependencies using the following command:
pnpm iAfter installing the dependencies, run the development server:
pnpm devOpen http://localhost:3000 with your browser to see the result.
cp .env.example .env
Create a copy of the provided .env.example file and name it .env. Fill in the required OpenAI API Key in the newly created .env file or copy the below content to the .env file
# App
APP_ENV=development
NEXT_PUBLIC_APP_URL=http://localhost:3000
# OpenAI
OPENAI_API_KEY=your_openai_api_key
# Better Auth
BETTER_AUTH_SECRET=your_better_auth_secret
BETTER_AUTH_URL=http://localhost:3000
# Google
GOOGLE_CLIENT_ID=your_google_client_id
GOOGLE_CLIENT_SECRET=your_google_client_secret
# Polar
POLAR_ACCESS_TOKEN=your_polar_access_token
# Database
DATABASE_URL=your_database_url
# Email
RESEND_API_KEY=your_re_send_api_key
EMAIL_SENDER_NAME=your_email_sender_name
EMAIL_SENDER_ADDRESS=your_email_sender_addressMake sure to replace placeholder values with your actual API keys, and keep them safe!
- Login to the app
- Enter your data in the form
- Use your daily meal plan!