Files
revanced-bots/apis/websocket/docs/0_development_environment.md
2024-06-24 18:23:14 +07:00

898 B

🏗️ Setting up the development environment

Important

This project uses Bun to run and bundle the code.
Compatibility with other runtimes (Node.js, Deno, ...) are not guaranteed and most package scripts won't work.

To start developing, you'll need to set up the development environment first.

  1. Install Bun

  2. Clone the mono-repository

    git clone https://github.com/ReVanced/revanced-helper.git &&
    cd revanced-helper
    
  3. Install dependencies

    bun install
    
  4. Build packages/libraries

    bun build:deps
    
  5. Change your directory to this project's root

    cd apis/websocket
    

⏭️ What's next

The next page will tell you about server configurations.

Continue: ⚙️ Configuration