This is a SvelteKit and TypeScript project.
Install the project with yarn package manager:
yarn
Create a .env and add the API key to retrieve event information from Eventbrite, and add any additional event IDs to retrieve those too.
cp .env.example .env
Once you've created a project and installed dependencies with npm install
(or pnpm install
or yarn
), start a development server:
yarn run dev
# or start the server and open the app in a new browser tab
yarn run dev --open
This should be handled automatically by our hosting, but to create a production version outside of that environment:
yarn run build
You can preview the production build with npm run preview
.