An open API service indexing awesome lists of open source software.

https://github.com/sonodima/tubero-backend

Backend module of tubero: The simple self-hosted YouTube downloader.
https://github.com/sonodima/tubero-backend

Last synced: about 2 months ago
JSON representation

Backend module of tubero: The simple self-hosted YouTube downloader.

Awesome Lists containing this project

README

        



tubero


Version


License: ISC

> Backend module of tubero: the simple self-hosted YouTube downloader.

## Setup

#### Docker (recommended)

```sh
docker run -d -p 4444:8080 --name tubero-backend sonodima/tubero-backend
```

#### Manual

```sh
git pull https://github.com/sonodima/tubero-backend
cd tubero-backend
npm install

# Production Build
npm run build
node ./dist/main.js

# Development Server
npm start
```


> Don't forget to deploy the [Client Application](https://github.com/sonodima/tubero)