A game all about lying - heavily inspired by the Jackbox Party Pack game "Fibbage: Enough About You"
Uncover truths and fabrications as players reveal personal anecdotes and craft convincing lies. With new rounds adding twists and turns, it's not just about what you know, but who you can fool!
Install the Node.js v20 runtime and the pnpm package manager.
# Arch Linux
pacman -S nodejs-lts-iron
corepack enable
corepack prepare pnpm@latest --activate
Install the dependencies
pnpm install
Spin up the client
cd client
pnpm dev
Spin up the server
cd server
pnpm dev
Visit localhost:5173 in your browser and start playing!
If you want to play with friends within the same network, you will need to change some settings.
Note
As soon as we have implemented a gateway server, these steps will no longer be necessary. A well known gateway server will then handle communication between clients and servers without the need for manual configuration.
- Find out your local IP address
- Open the
client/.env
file and change theVITE_API_BASE_URL
tohttp://<your-ip>:3000
- Launch the client with the
--host
flag to allow outside connections - Launch the server as usual
- Let your friends connect via
http://<your-ip>:5173