- Node.js 18 or higher
- npm or yarn
- Clone the repository
git clone https://github.com/Miguel61823/RepIt.git
cd repit
cd gymerapp- Install Dependencies
npm install
# or if using yarn
yarn install- Set Up Environment Variables
# Copy the example environment file
cp .env.example .env
# Open .env and configure your environment variablesRequired environment variables:
-
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY= Your Clerk publishable key -
CLERK_SECRET_KEY= Your Clerk secret key -
DATABASE_URL= Your Neon Postgres Database URL -
ANTHROPIC_API_KEY= Your Anthropic api key
- Start the Development Server
npm run dev
# or
yarn devYour application should now be running on http://localhost:3000
To create and run a production build:
npm run build
npm start
# or
yarn build
yarn start