Installation

Setting up starter and running the local development server.

This guide will walk you through setting <script setup> up Acme. We will go through the process of cloning the project, installing dependencies, setting up your database and running the local development server.

Installation

Clone the repository

Run the following command on your local environment:

git clone https://github.com/acme.git project-name
Install dependencies
cd project-name
# It will install all packages
pnpm install
Init Database
pnpm db:push
Generate Prisma Client
pnpm db:generate

Development

Start the dev server:

pnpm dev

You should now be able to access the application with live reload at http://127.0.0.1:7000.