https://github.com/nickjer/party
A party game platform where you can play party-style games with your friends right from your phone
https://github.com/nickjer/party
Last synced: 5 months ago
JSON representation
A party game platform where you can play party-style games with your friends right from your phone
- Host: GitHub
- URL: https://github.com/nickjer/party
- Owner: nickjer
- License: mit
- Created: 2025-10-25T11:20:10.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2025-12-22T02:26:43.000Z (6 months ago)
- Last Synced: 2025-12-22T16:49:42.121Z (6 months ago)
- Language: Ruby
- Size: 513 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Party
A party game platform where you can play party-style games with your friends
right from your phone. No signup required - just start a game and share the
link.
## Games
**Loaded Questions** - A hilarious guessing game where players answer creative
prompts, then try to match who said what. Perfect for getting to know your
friends better (or discovering how weird they really are).
**Burn Unit** *(Coming Soon)* - A competitive roasting game where players
submit their best burns and vote on the most savage ones. Think you're witty?
Prove it.
## Requirements
- Ruby 3.3+
- Node.js 18+
- SQLite 3
## Setup
```bash
bin/setup
```
That's it! This will install dependencies, setup the database, and start the
development server at `http://localhost:3000`.
If you want to setup without starting the server:
```bash
bin/setup --skip-server
```
Then start manually with:
```bash
bin/dev
```
## Testing
```bash
# Run all tests
bin/rails test
# Type check with RBS (run before committing)
bin/steep check
```
## Development
See [CLAUDE.md](CLAUDE.md) for detailed development patterns, architecture
documentation, and coding conventions.
## Deployment
```bash
bin/kamal deploy
```
Deployment configuration in `config/deploy.yml`.