Source code for the main website for Integration, the annual techno-cultural-sports fest of the students of Indian Statistical Institute, Kolkata.
Maintained by the Digital Infrastructure Committee.
main
- The live, production site deployed at https://integrationfest.in.staging
- The staging branch for all changes. All contributions first end up here.
The website is built using SvelteKit, and uses Firebase for essentially all backend functions. We use Cloudflare Pages to deploy our website, and Bun for local development and testing.
- Fork this repository.
- Clone this repository locally and
cd
to it. - Install Bun.
- Install
firebase-tools
globally on your system usingnpm i -g firebase-tools
. - Install dependencies using
bun i
. - Create a new branch based off
staging
for your changes. - To start a dev server, run
bun dev
.
Firebase Cloud Functions doesn't support Bun as a runtime yet. Nevertheless, the emulators work just fine with Bun for local development. However, the /functions
directory still maintains npm
-based dependency management so that we can deploy successfully.
The project ships with the recommended Prettier configuration, contributions not following those guidelines will be rejected. Check using bun lint
. We recommend enabling editor.formatOnSave
, but to format manually you can always run bun format
.