- Clone and enter the repo:
git clone https://github.com/acmcsufoss/gallery.git
cd gallery- Install dependencies with Bun:
If you don't have Bun, install it here -> bun.com/docs/installation
bun install- Create a
.envfile:
cp .env.example .env- Start the dev server
bun run dev
# or start the server and open the app in a new browser tab
bun run dev -- --openTo create a production version of your app (make sure this works before submitting changes!):
bun run buildYou can preview the production build with bun run preview.