git clone https://github.com/SupersaasHQ/essentials.git
Make sure to install the dependencies (PNPM Recommended):
# pnpm
pnpm install
# npm
npm install
# yarn
yarn install
# bun
bun install
Start the development server on http://localhost:3000
:
# pnpm
pnpm dev
# npm
npm run dev
# yarn
yarn dev
# bun
bun run dev
Open the project in your browser at http://localhost:3000
.
Build the application to generate code for production:
# pnpm
pnpm build
# npm
npm run build
# yarn
yarn build
# bun
bun run build