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.
-
Node.js 18+
-
npm, yarn, or pnpm
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=
- Install dependencies:
npm install # or yarn install or pnpm install
- Run the development server:
npm run dev # or yarn dev or pnpm dev
- Open http://localhost:3000 in your browser.
To create an optimized production build:
npm run build
To start the production server:
npm run start
To learn more about Next.js, check out: