Go to file
Hri7566 e830f0deb1 Note quota 2024-07-09 03:10:09 -04:00
.vscode
config
prisma Update prisma 2024-02-01 08:40:59 -05:00
public@6d894d19cd Implement X-Forwarded-For 2024-02-01 12:36:00 -05:00
src Note quota 2024-07-09 03:10:09 -04:00
.env.template
.eslintrc.js
.gitignore
.gitmodules
.prettierrc
LICENSE
README.md
bun.lockb Fix joining problems 2024-07-09 02:20:46 -04:00
package.json
tsconfig.json

README.md

MPP

mpp-server-dev2

This is a new MPP server currently in development for MPP.dev. The original server is old and it needs a new one.

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

  1. Install bun

    $ curl -fsSL https://bun.sh/install | bash
    
  2. Setup Git submodules

    $ git submodule update --init --recursive
    
  3. Configure

    • Copy environment variables
    $ cp .env.template .env
    

    Edit .env to your needs.

    • Edit the files in the config folder to match your needs
  4. Install packages

    $ bun i
    
  5. Setup database

    $ bunx prisma generate
    $ bunx prisma db push
    
  6. Run

    $ bun .