yes... why not
 
 
 
 
Go to file
Daniel 73d3f42664 Upload Files. 2024-02-03 22:23:40 -03:00
config Upload Files. 2024-02-03 22:23:40 -03:00
prisma Upload Files. 2024-02-03 22:23:40 -03:00
public Upload Files. 2024-02-03 22:23:40 -03:00
src Upload Files. 2024-02-03 22:23:40 -03:00
.env.template Upload Files. 2024-02-03 22:23:40 -03:00
.eslintrc.js Upload Files. 2024-02-03 22:23:40 -03:00
.gitignore Upload Files. 2024-02-03 22:23:40 -03:00
.prettierrc Upload Files. 2024-02-03 22:23:40 -03:00
LICENSE Upload Files. 2024-02-03 22:23:40 -03:00
README.md Upload Files. 2024-02-03 22:23:40 -03:00
bun.lockb Upload Files. 2024-02-03 22:23:40 -03:00
package.json Upload Files. 2024-02-03 22:23:40 -03:00
tsconfig.json Upload Files. 2024-02-03 22:23:40 -03:00

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 .