Skip to content

thepersonalaicompany/amurex-web

Repository files navigation

Amurex Logo

Amurex Web

License Chrome Web Store Twitter Follow Discord

Amurex Web

This is the web interface for the Amurex project. It serves as the web app for viewing and managing previous meetings, built with Next.js.

Prerequisites

  • Node.js 18+

  • npm, yarn, or pnpm

Getting Started

First, clone the repository:

git clone https://github.com/thepersonalaicompany/amurex-web
cd amurex-web

Create a .env.local file in the root directory with the following variables:

NEXT_PUBLIC_SUPABASE_URL=
NEXT_PUBLIC_SUPABASE_ANON_KEY=
SUPABASE_SERVICE_ROLE_KEY=
SUPABASE_ANON_KEY=
SUPABASE_URL=
OPENAI_API_KEY=
NEXT_PUBLIC_BASE_URL=

Installation

  1. Install dependencies:
npm install  # or yarn install or pnpm install
  1. Run the development server:
npm run dev  # or yarn dev or pnpm dev
  1. Open http://localhost:3000 in your browser.

Building for Production

To create an optimized production build:

npm run build

To start the production server:

npm run start

Learn More

To learn more about Next.js, check out: