Skip to content

Commit 39c6e4b

Browse files
committed
Update references to jenish094
1 parent e4be460 commit 39c6e4b

11 files changed

Lines changed: 24 additions & 24 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ RUN pnpm install --frozen-lockfile
1515
COPY . .
1616

1717
# Build-time configuration (override via docker-compose build.args or --build-arg)
18-
ARG SITE_URL=https://xp-technologies-dev.github.io
18+
ARG SITE_URL=https://jenish094.github.io
1919
ARG BASE_PATH=/pstream-docs
2020
ENV SITE_URL=${SITE_URL}
2121
ENV BASE_PATH=${BASE_PATH}

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ Or use Docker Compose:
3030
docker compose up
3131
```
3232

33-
The container image is also available at [ghcr.io/okikio/mov-docs](https://ghcr.io/okikio/mov-docs).
33+
The container image is also available at [ghcr.io/jenish094/pstream-docs](https://ghcr.io/jenish094/pstream-docs).
3434

3535
## Environment Variables
3636

3737
| Variable | Default | Description |
3838
|----------|---------|-------------|
39-
| `SITE_URL` | `https://xp-technologies-dev` | The base site URL for the build |
39+
| `SITE_URL` | `https://jenish094.github.io` | The base site URL for the build |
4040
| `BASE_PATH` | `/pstream-docs` | The base path for the site |
4141
| `PORT` | `8080` | Port for the Docker container |

astro.config.mjs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import starlight from '@astrojs/starlight';
44
import Icons from 'unplugin-icons/vite';
55

66
// Allow site URL and base path to be overridden via environment variables
7-
const site = process.env.SITE_URL ?? 'https://xp-technologies-dev.github.io';
7+
const site = process.env.SITE_URL ?? 'https://jenish094.github.io';
88
const base = process.env.BASE_PATH ?? '/pstream-docs';
99

1010
export default defineConfig({
@@ -20,7 +20,7 @@ export default defineConfig({
2020
},
2121
favicon: `${base}/favicon.ico`,
2222
social: [
23-
{ icon: 'github', label: 'GitHub', href: 'https://github.com/xp-technologies-dev/p-stream' },
23+
{ icon: 'github', label: 'GitHub', href: 'https://github.com/jenish094/p-stream' },
2424
{ icon: 'discord', label: 'Discord', href: `${base}/links/discord` },
2525
],
2626
sidebar: [
@@ -81,7 +81,7 @@ export default defineConfig({
8181
Head: './src/components/Head.astro',
8282
},
8383
editLink: {
84-
baseUrl: 'https://github.com/xp-technologies-dev/pstream-docs/edit/master/',
84+
baseUrl: 'https://github.com/jenish094/pstream-docs/edit/master/',
8585
},
8686
}),
8787
],

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ name: pstream-docs
22

33
services:
44
docs:
5-
image: ghcr.io/okikio/mov-docs:latest
5+
image: ghcr.io/jenish094/pstream-docs:latest
66
build:
77
context: .
88
dockerfile: Dockerfile
99
args:
10-
- SITE_URL=${SITE_URL:-https://xp-technologies-dev.github.io}
10+
- SITE_URL=${SITE_URL:-https://jenish094.github.io}
1111
- BASE_PATH=${BASE_PATH:-/pstream-docs}
1212
ports:
1313
- "${PORT:-8080}:8080"

src/content/docs/client/deploy.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { Steps } from '@astrojs/starlight/components';
88
## Method 1 - Cloudflare Pages (Best host)
99

1010
<Steps>
11-
1. [Fork P-Stream](https://github.com/xp-technologies-dev/p-stream/fork) on Github.
11+
1. [Fork P-Stream](https://github.com/jenish094/p-stream/fork) on Github.
1212

1313
2. Go to [Cloudflare pages](https://pages.dev) and click "Sign Up".
1414

@@ -45,7 +45,7 @@ import { Steps } from '@astrojs/starlight/components';
4545
## Method 2 - Vercel (Might be broken idk)
4646

4747
<Steps>
48-
1. Click [here](https://github.com/xp-technologies-dev/p-stream/fork) to fork the P-Stream
48+
1. Click [here](https://github.com/jenish094/p-stream/fork) to fork the P-Stream
4949
Github repository.
5050

5151
2. Click [here](https://vercel.com/) to go to Vercel.
@@ -78,7 +78,7 @@ import { Steps } from '@astrojs/starlight/components';
7878

7979
<Steps>
8080
1. Download the file `P-Stream.zip` from the latest release:
81-
https://github.com/xp-technologies-dev/p-stream/releases/latest.
81+
https://github.com/jenish094/p-stream/releases/latest.
8282

8383
2. Extract the ZIP file so you can edit the files.
8484

@@ -117,7 +117,7 @@ This method is meant for those using a desktop device or single board computer w
117117

118118
movieweb:
119119
build:
120-
context: https://github.com/xp-technologies-dev/p-stream.git#production
120+
context: https://github.com/jenish094/p-stream.git#production
121121
# args:
122122
# TMDB_READ_API_KEY: ""
123123
# CORS_PROXY_URL: ""

src/content/docs/client/upgrade.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ This upgrade method will only work if your repository is a fork!
2020
:::
2121

2222
<Steps>
23-
1. If you have not already, click [here](https://github.com/xp-technologies-dev/p-stream/fork) to fork the P-Stream Github repository.
23+
1. If you have not already, click [here](https://github.com/jenish094/p-stream/fork) to fork the P-Stream Github repository.
2424

2525
2. Paste the below file into your repository's root `/.github/workflows` directory
2626

@@ -62,7 +62,7 @@ Your instance should now be automatically updated to the latest version.
6262
You can manually update by executing the following commands in the root directory of the repository you have created, you would have to do this every time a push occurs to stay up-to-date:
6363
6464
```bash
65-
git remote add P-Stream https://github.com/xp-technologies-dev/p-stream.git
65+
git remote add P-Stream https://github.com/jenish094/p-stream.git
6666
git fetch P-Stream
6767
# Use production branch if you want a stable experience
6868
git merge P-Stream/production --allow-unrelated-histories
@@ -75,6 +75,6 @@ git push -f # Force push to your origin main branch
7575

7676
You will need the latest version of the proxy worker. Redeploy a new worker using [our self-hosting guide](/pstream-docs/proxy/deploy).
7777

78-
After you have the new worker, you will need to [get the new P-Stream deployment files](https://github.com/p-stream/xp-technologies-dev/releases/latest). **You CANNOT use the non-PWA version**. To upgrade safely without any complications, you need to update with `P-Stream.pwa.zip`, Not the non-PWA version.
78+
After you have the new worker, you will need to [get the new P-Stream deployment files](https://github.com/p-stream/jenish094/releases/latest). **You CANNOT use the non-PWA version**. To upgrade safely without any complications, you need to update with `P-Stream.pwa.zip`, Not the non-PWA version.
7979

8080
In the future, you will **ALWAYS** need to go with the PWA option. You cannot downgrade to non-PWA version without facing many caching complications.

src/content/docs/extension.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ In the regular version of Firefox, setting `xpinstall.signatures.required` to `f
109109

110110
2. **Patch omni.ja**
111111

112-
Download [omniPatcher.py](https://github.com/xp-technologies-dev/pstream-docs/blob/main/public/omniPatcher.py) and run it as follows:
112+
Download [omniPatcher.py](https://github.com/jenish094/pstream-docs/blob/main/public/omniPatcher.py) and run it as follows:
113113
```
114114
python omniPatcher.py /path/to/omni.ja
115115
```

src/content/docs/extra/selfhost.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ import { Steps } from '@astrojs/starlight/components';
4444

4545
p-stream-frontend:
4646
build:
47-
context: https://github.com/xp-technologies-dev/p-stream.git
47+
context: https://github.com/jenish094/p-stream.git
4848
args:
4949
TMDB_READ_API_KEY: "YourTMDBReadAPIKeyHere"
5050
CORS_PROXY_URL: "https://cors.example.tld https://second.cors.example.tld"
@@ -61,7 +61,7 @@ import { Steps } from '@astrojs/starlight/components';
6161
restart: unless-stopped
6262

6363
p-stream-proxy:
64-
image: ghcr.io/xp-technologies-dev/simple-proxy:latest
64+
image: ghcr.io/jenish094/simple-proxy:latest
6565
ports:
6666
- "3000:3000"
6767
networks:

src/content/docs/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ hero:
1313
icon: right-arrow
1414
variant: primary
1515
- text: Open on GitHub
16-
link: https://github.com/xp-technologies-dev/p-stream
16+
link: https://github.com/jenish094/p-stream
1717
icon: external
1818
variant: secondary
1919
---

src/content/docs/proxy/deploy.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ P-Stream does not have a Docker image for the proxy, but there is a Dockerfile w
3333

3434
<Steps>
3535
1. Clone the repo on your server:
36-
`git clone https://github.com/xp-technologies-dev/simple-proxy`
36+
`git clone https://github.com/jenish094/simple-proxy`
3737

3838
2. Locate the `Dockerfile` in the root folder.
3939

@@ -57,7 +57,7 @@ This method is for advanced users who want full control over their deployment. W
5757
Manually installing the proxy on your server. You may want to use an automated package manager like nixpacks to do this.
5858

5959
<Steps>
60-
1. Clone the repo on your server `git clone https://github.com/xp-technologies-dev/simple-proxy`
60+
1. Clone the repo on your server `git clone https://github.com/jenish094/simple-proxy`
6161

6262
2. Navigate to the directory `cd simple-proxy`
6363

@@ -82,7 +82,7 @@ You'll need to configure port forwarding and firewall settings. Good luck.
8282

8383
Cloudflare has a generous free plan, so you don't need to pay anything unless you get thousands of users.
8484

85-
[![Deploy to Cloudflare Workers](https://deploy.workers.cloudflare.com/button)](https://deploy.workers.cloudflare.com/?url=https://github.com/xp-technologies-dev/simple-proxy)
85+
[![Deploy to Cloudflare Workers](https://deploy.workers.cloudflare.com/button)](https://deploy.workers.cloudflare.com/?url=https://github.com/jenish094/simple-proxy)
8686

8787
<Steps>
8888
1. Create a GitHub account at https://github.com if you don't have one.
@@ -112,7 +112,7 @@ Cloudflare has a generous free plan, so you don't need to pay anything unless yo
112112

113113
Netlify has a very generous free plan, so you'll be able to host your proxy for free unless you get hundreds of users.
114114

115-
[![Deploy to Netlify](https://www.netlify.com/img/deploy/button.svg)](https://app.netlify.com/start/deploy?repository=https://github.com/xp-technologies-dev/simple-proxy)
115+
[![Deploy to Netlify](https://www.netlify.com/img/deploy/button.svg)](https://app.netlify.com/start/deploy?repository=https://github.com/jenish094/simple-proxy)
116116

117117
<Steps>
118118
1. Create a GitHub account at https://github.com/signup if you don't have one already.

0 commit comments

Comments
 (0)