A quick guide to run your starter project locally in just a few minutes.
All you need to have installed on your machine is Bun.
Follow these steps to get your project running locally.
starter-pro.zip file. Then, open up your terminal and navigate into the project folder.# Example:
cd starter-probun install.env file to store your secrets. You can do this by copying the example file.cp .env.example .envNow, open the .env file in your editor. This is where you'll add your database connection URL (DATABASE_URL) from your hosting provider and other secrets. If you don't need a specific feature, you can leave its environment variables blank or remove them.
bun db:pushbun devAnd you're live! 🚀 Open your browser to http://localhost:5173 to see your new starter project in action.
Now that you're set up, here are a few places to start:
src/routes directory to see how pages and authentication are structured.src/db/schema.ts).