Jeobeardy is a quiz game where you can create your own boards with categories and play them with friends https://jeobeardy.com/
Go to file
EisiBaer a1d1f7151f npm version upgrades and minor migration changes 2024-02-28 17:57:37 +01:00
public Create .gitkeep 2023-07-12 16:22:26 +02:00
src npm version upgrades and minor migration changes 2024-02-28 17:57:37 +01:00
.env_example Version 1.0 2023-07-10 18:18:02 +02:00
.eslintrc.cjs Version 1.0 2023-07-10 18:18:02 +02:00
.gitignore Version 1.0 2023-07-10 18:18:02 +02:00
.prettierrc.json Version 1.0 2023-07-10 18:18:02 +02:00
Dockerfile Version 1.0 2023-07-10 18:18:02 +02:00
LICENSE Version 1.0 2023-07-10 18:18:02 +02:00
README.md Version 1.0 2023-07-10 18:18:02 +02:00
example_docker-compose.yml Version 1.0 2023-07-10 18:18:02 +02:00
example_mongo-init.js Version 1.0 2023-07-10 18:18:02 +02:00
index.html Version 1.0 2023-07-10 18:18:02 +02:00
package-lock.json npm version upgrades and minor migration changes 2024-02-28 17:57:37 +01:00
package.json npm version upgrades and minor migration changes 2024-02-28 17:57:37 +01:00
vite.config.mjs npm version upgrades and minor migration changes 2024-02-28 17:57:37 +01:00

README.md

Jeobeardy

Jeobeardy (/dʒebeərdi/) is similiar to but not quite like Jeopardy. It is a quiz game where you can create your own boards with categories and then make your friends compete in a fun and interactive way

Code Structure

  • Server-side code can be found inside the ./src/server directory
  • Client-side code can be found inside the ./src/webapp directory

To install the necessary dependencies for the project, clone the repository and run

npm install

Run Server-side code

node ./src/server/server.js

or

npm start

to also build the client side code to be served by express (without Hot-Reload).

Run Client-side code

Compile with Hot-Reload for Development

npm run dev