lippo Docs

Getting Started

Set up the Alippo AI ecommerce store builder locally.

Getting Started

Follow these steps to run the workspace locally.

Prerequisites

Install

Clone the repository and install dependencies:

git clone <your-repo-url>
cd ecomm-ai
bun install

Environment

Create your local environment file if you do not already have one:

cp .env.example .env.local

Required variables depend on the auth and billing features you enable, but the most common ones are:

VariableDescription
DATABASE_URLPostgreSQL connection string
NEXT_PUBLIC_APP_URLBase URL for the app
BETTER_AUTH_SECRETAuth secret used by the selected provider
STRIPE_SECRET_KEYStripe API secret key
STRIPE_WEBHOOK_SECRETStripe webhook signing secret

Run the app

bun run --filter @repo/next-app dev

The storefront builder is available at:

http://localhost:7836

Optional setup flow

If you need to initialize or reconfigure the auth-provider bootstrap, run:

bun run setup

That flow is separate from day-to-day storefront work. It is only needed when you want to exercise the repo setup machinery.

Build

bun run build

On this page