26 lines
647 B
Markdown
26 lines
647 B
Markdown
# On The Spectrum - A party game to argue with friends about
|
|
|
|
## Building project
|
|
|
|
Preliminary steps:
|
|
|
|
- Get [Bun](https://bun.com/docs/installation) `curl -fsSL https://bun.com/install | bash`
|
|
- Maybe need [Node](https://nodejs.org/en/download) too?
|
|
- IDK. I'm also using [Jujitsu](https://docs.jj-vcs.dev/latest/) but you don't have to.
|
|
- Ask me if you have questions
|
|
- You'll also prolly have to get ssh keys to push but idk.
|
|
|
|
```sh
|
|
# git clone the directory
|
|
git clone git@git.sr.ht:~svlad_cjelli/onTheSpectrum
|
|
|
|
# cd into directory
|
|
cd onTheSpectrum
|
|
|
|
# bun install all dependencies
|
|
bun i
|
|
|
|
# bun run with bun backend
|
|
bun --bun run dev --open
|
|
```
|