Compare commits
6 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
60de5a69c4 |
||
|
|
3ecf666c3c | ||
|
|
f0a7a9219a | ||
|
|
985e11cbea |
||
|
|
165712c6d1 |
||
|
|
d8c31cf39f |
3 changed files with 5 additions and 5 deletions
|
|
@ -13,6 +13,7 @@
|
|||
|
||||
# PM2 Deployment
|
||||
```
|
||||
npm run build
|
||||
pm2 start npm --name prod -- run "start"
|
||||
```
|
||||
# For DEV
|
||||
|
|
@ -32,4 +33,4 @@ npm run dev
|
|||
|
||||
- [ ] Add a bookmark page to store the user's favorite movies and tv shows
|
||||
- [ ] Add the video playing feature when the user hover over the card and play the video
|
||||
- [ ] Add authentication so that the user can sign up and log in to save their favorite movies and tv shows permanently
|
||||
- [ ] Add authentication so that the user can sign up and log in to save their favorite movies and tv shows permanently
|
||||
|
|
|
|||
|
|
@ -35,9 +35,8 @@ const Details = () => {
|
|||
let temp = '&tr='
|
||||
let tracker = ''
|
||||
trackers.map(item => {
|
||||
tracker = tracker + temp + item
|
||||
tracker = tracker + temp + item
|
||||
})
|
||||
|
||||
const router = useRouter()
|
||||
let id
|
||||
let slug
|
||||
|
|
@ -65,7 +64,7 @@ const Details = () => {
|
|||
.then(res => {
|
||||
setLoader(false)
|
||||
|
||||
let url = `magnet:?xt=urn:btih:${res?.data?.info_hash}&dn=${res?.data?.name}${trackers}`
|
||||
let url = `magnet:?xt=urn:btih:${res?.data?.info_hash}&dn=${res?.data?.name}${tracker}`
|
||||
let url_t = `https://m2t.mirrorbay.org/info-hash/${res?.data?.info_hash}/${res?.data?.name}/?apikey=therarbg`
|
||||
setMagnateDownload(url)
|
||||
setTorrentDownload(url_t)
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
import axios from "axios";
|
||||
export const API_BASE = 'https://t-rb.org';
|
||||
export const API_BASE = 'https://therarbg.to';
|
||||
//const API_BASE = 'https://therarbg.com';
|
||||
let token;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue