COMSCI@UP.BAG's project for the QR Code Hunt 2023 at the University of the Philippines Baguio. The website is available at qrcodehunt.vercel.app.
Also, check out the SvelteKit documentation to learn more about the framework used in this project.
# clone this repository
git clone https://github.com/comsci-upbag/qrcodehunt
# change directory into the root folder of the application
cd qrcodehunt
# install dependencies (required only on first run or after every update on package.json)
npm installTo be able to start running the project, you'll need to create a .env file in the root folder of the application. This file will contain the environment variables needed to run the application. You can find the content of the .env file at the organization's Messenger group chat. Now that you have the .env file, you can start editing the project with the code editor of your choice and run the following commands to start the development server:
# start the server
npm run dev
# or start the server and open the app in a new browser tab
npm run dev -- --open