Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 661 Bytes

File metadata and controls

25 lines (18 loc) · 661 Bytes

basishacks_2026

The official website for basishacks_2026.

Local setup

First, copy .env.example as .env and fill out the fields. Then choose one of the methods below.

Using Bun (preferred):

bun i
bunx wrangler d1 execute DB --file sql/init.sql
bunx wrangler d1 execute DB --command 'INSERT INTO hackathon VALUES(1, "not_started", 0, 0, 0, 0, 0, NULL, NULL) ON CONFLICT DO NOTHING'
bun dev --https

Using npm:

npm i
npx wrangler d1 execute DB --file sql/init.sql
npx wrangler d1 execute DB --command 'INSERT INTO hackathon VALUES(1, "not_started", 0, 0, 0, 0, 0, NULL, NULL) ON CONFLICT DO NOTHING'
npm run dev -- --https