Ensure you have Bun (v1.1.40 or later) installed.
You can install it with:
curl -fsSL https://bun.sh/install | bash
Installing Dependencies Run the following command in the project root directory:
bun install
The app consists of a server and a frontend, which need to run simultaneously.
Start the Server In the project root directory:
bun dev
Start the Frontend Navigate to the frontend directory and start the frontend:
cd frontend
bun dev
To use authentication in this app, you’ll need to set up an account with Kinde and configure the required environment variables.
.env
file is required to run the app. Make sure to create it from .env.sample
and fill in the necessary parameters.http://localhost:5173
with your production domain.This project was created using bun init
in bun v1.1.40. Bun is a fast all-in-one JavaScript runtime.