Skip to content

💻 Development

Manuel edited this page Dec 18, 2022 · 1 revision

These instructions are for advanced users only. Usually, you don't need them

Warning: This requires that you've installed https://nodejs.org/en/ and https://yarnpkg.com/ on your system.

Step 1: Clone the repository:

$ git clone https://github.com/manuel-rw/jellyfin-discord-music-bot.git
$ cd jellyfin-discord-music-bot/

Step 2: Install dependencies:

$ yarn

Step 3: Start development mode

$ yarn start:dev

There are other startup methods as well:

# development
$ npm run start

# watch mode
$ npm run start:dev

# production mode
$ npm run start:prod

# unit tests
$ npm run test

# e2e tests
$ npm run test:e2e

# test coverage
$ npm run test:cov