2023-09-08 03:19:13 +02:00
|
|
|
# mpp-server-dev2
|
2021-03-20 20:16:59 +01:00
|
|
|
|
2023-09-08 03:19:13 +02:00
|
|
|
This is a new MPP server currently in development for [MPP.dev](https://www.multiplayerpiano.dev). The original server is old and it needs a new one.
|
2023-09-09 11:27:16 +02:00
|
|
|
|
|
|
|
This server uses Bun.
|
|
|
|
|
|
|
|
The commit history includes BopItFreak's server because this server is (debatably) a heavy reimplementation of my fork of it.
|
|
|
|
|
|
|
|
## How to run
|
|
|
|
|
|
|
|
0. Install bun
|
|
|
|
|
|
|
|
```
|
|
|
|
$ curl -fsSL https://bun.sh/install | bash
|
|
|
|
```
|
|
|
|
|
|
|
|
1. Configure
|
|
|
|
|
|
|
|
- Copy environment variables
|
|
|
|
|
|
|
|
```
|
|
|
|
$ cp .env.template .env
|
|
|
|
```
|
|
|
|
|
|
|
|
Edit `.env` to your needs.
|
|
|
|
|
|
|
|
- Edit the files in the `config` folder to match your needs
|
|
|
|
|
|
|
|
2. Install packages
|
|
|
|
|
|
|
|
```
|
|
|
|
$ bun i
|
|
|
|
```
|
|
|
|
|
|
|
|
3. Setup database
|
|
|
|
|
|
|
|
```
|
|
|
|
$ bunx prisma generate
|
|
|
|
$ bunx prisma db push
|
|
|
|
```
|
|
|
|
|
|
|
|
4. Build
|
|
|
|
|
|
|
|
```
|
|
|
|
$ bun run build
|
|
|
|
```
|
|
|
|
|
|
|
|
5. Run
|
|
|
|
|
|
|
|
```
|
|
|
|
$ bun start
|
|
|
|
```
|
2023-09-09 11:29:26 +02:00
|
|
|
|
|
|
|
## Development
|
|
|
|
|
|
|
|
```
|
|
|
|
$ bun dev
|
|
|
|
```
|