https://github.com/rbannat/jeopardy
Jeopardy clone for teammeetings built with Svelte and SvelteKit
https://github.com/rbannat/jeopardy
google svelte
Last synced: about 1 year ago
JSON representation
Jeopardy clone for teammeetings built with Svelte and SvelteKit
- Host: GitHub
- URL: https://github.com/rbannat/jeopardy
- Owner: rbannat
- License: gpl-3.0
- Created: 2022-08-01T11:55:33.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-09-19T08:14:13.000Z (almost 4 years ago)
- Last Synced: 2025-03-15T15:04:00.695Z (over 1 year ago)
- Topics: google, svelte
- Language: Svelte
- Homepage:
- Size: 165 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Jeopardy for team meetings
A Jeopardy clone for team meetings built with Svelte and SvelteKit.
## Developing
Once you've installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:
```bash
npm run dev
# or start the server and open the app in a new browser tab
npm run dev -- --open
```
## Building
To create a production version of your app:
```bash
npm run build
```
You can preview the production build with `npm run preview`.
> To deploy your app, you may need to install an [adapter](https://kit.svelte.dev/docs/adapters) for your target environment.
## Using a Google Spreadsheet to manage questions and answers content
1. [Create a Google Cloud Project](https://developers.google.com/workspace/guides/create-project)
2. [Enable Spreadsheet API](https://developers.google.com/workspace/guides/enable-apis)
3. [Create a service account and access credentials](https://developers.google.com/workspace/guides/create-credentials#service-account)
4. Copy [spreadsheet template](https://docs.google.com/spreadsheets/d/11pW5DrMpTZKJ5i2pA_bm6W85bvihNHPVO0BpuNyanoE/)
5. Share copied spreadsheet with created service account
6. Create `.env` file and add credentials
```sh
mv .env.example .env
```