Go to file
Daniel fadb92e544 Chat History added. 2024-02-03 22:04:53 -03:00
.vscode
config Add kickban, improve command line 2024-02-01 08:25:24 -05:00
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 Chat History added. 2024-02-03 22:04:53 -03:00
.env.template
.eslintrc.js
.gitignore
.gitmodules
.prettierrc
LICENSE
README.md
bun.lockb Uhhh trying. TODO: User Command + Chat logs save 2024-02-03 21:00:15 -03:00
package.json Move readline to commands and add something like jinja 2024-01-26 03:56:15 -05:00
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 .