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.
- Host: GitHub
- URL: https://github.com/sonodima/tubero-backend
- Owner: sonodima
- Created: 2021-06-27T19:46:25.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-10-13T08:04:33.000Z (over 3 years ago)
- Last Synced: 2025-02-03T12:21:55.821Z (4 months ago)
- Language: TypeScript
- Homepage:
- Size: 726 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
![]()
tubero
> 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)