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 installEnvironment
Create your local environment file if you do not already have one:
cp .env.example .env.localRequired variables depend on the auth and billing features you enable, but the most common ones are:
| Variable | Description |
|---|---|
DATABASE_URL | PostgreSQL connection string |
NEXT_PUBLIC_APP_URL | Base URL for the app |
BETTER_AUTH_SECRET | Auth secret used by the selected provider |
STRIPE_SECRET_KEY | Stripe API secret key |
STRIPE_WEBHOOK_SECRET | Stripe webhook signing secret |
Run the app
bun run --filter @repo/next-app devThe storefront builder is available at:
http://localhost:7836Optional setup flow
If you need to initialize or reconfigure the auth-provider bootstrap, run:
bun run setupThat 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