https://github.com/marcopiovanello/rarbg.reloaded
Performant fullstack solution for rarbg
https://github.com/marcopiovanello/rarbg.reloaded
golang rarbg torrent
Last synced: 3 months ago
JSON representation
Performant fullstack solution for rarbg
- Host: GitHub
- URL: https://github.com/marcopiovanello/rarbg.reloaded
- Owner: marcopiovanello
- Created: 2023-06-04T19:19:46.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2023-06-05T07:18:35.000Z (almost 2 years ago)
- Last Synced: 2025-02-19T13:27:48.201Z (3 months ago)
- Topics: golang, rarbg, torrent
- Language: Go
- Homepage:
- Size: 64.5 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# RarBG.reloaded

## Requirements
- RarBG sqlite dump (magnet link publicly available) (I will not provide any link)
- Redis server
- Go 1.20## Build
```sh
# backend
go build -o rarbg-api cmd/api/main.goREDIS_ADDR=localhost \
REDIS_PASS=superpassword \
REDIS_DB=0 \
./rarbg-api# frotnend
cd web
pnpm install
pnpm build
pnpm start
```## Technologies used
**Backend**
- Go
- Gorm
- SQLite**Frontend**
- Next.js
- TypeScript