Skip to content
This repository was archived by the owner on Aug 8, 2025. It is now read-only.

Commit 2dc59e3

Browse files
committed
[project]: fixed LocalLLaMA reference everywhere;
removed `react-pipeline`
1 parent 0776918 commit 2dc59e3

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

.idea/modules.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Deployment ready (React + TS + Vite + Tailwind)
22

3-
GitHub page should be available here: https://maifeeulasad.github.io/react-pipeline
3+
GitHub page should be available here: https://maifeeulasad.github.io/LocalLLaMA
44

55
## Using docker
66
```bash
@@ -14,18 +14,18 @@ docker compose up
1414
- Give it some cool and understandable name(mainly for later usage - I had key pair named *okjanu* from 2018, I have no idea what do they do, but it's under folder `imporatnt`)
1515
- Backup to some cloud store and remove it from local storage
1616
- Go to *secrets* under *settings*
17-
- For this repo, I went to: https://github.com/maifeeulasad/react-pipeline/settings/secrets/actions
17+
- For this repo, I went to: https://github.com/maifeeulasad/LocalLLaMA/settings/secrets/actions
1818
- Open the private key, *file without `.pub` extension*, with any text editor or in terminal
1919
- Paste it write there
2020
- Go to *deploy keys* under *settings*
21-
- For this repo: https://github.com/maifeeulasad/react-pipeline/settings/keys
21+
- For this repo: https://github.com/maifeeulasad/LocalLLaMA/settings/keys
2222
- Open the public key and paste there
2323
- Give it write access(must)
2424

2525
## Some stuff:
26-
- GA included, please change it accordingly, at the very bottom of `index.html`. Here: https://github.com/maifeeulasad/react-pipeline/blob/80773182fae66e463d7928f690863bc965757a38/index.html#L35
26+
- GA included, please change it accordingly, at the very bottom of `index.html`. Here: https://github.com/maifeeulasad/LocalLLaMA/blob/80773182fae66e463d7928f690863bc965757a38/index.html#L35
2727
- In `App.tsx`, find `<BrowserRouter ...>` and set the project name here, correctly. Currently set to:
2828
```
29-
<BrowserRouter basename="/react-pipeline">
29+
<BrowserRouter basename="/LocalLLaMA">
3030
...
3131
```

cypress/e2e/load.cy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
describe('loading webpage', () => {
22
it('load landing page', () => {
3-
cy.visit('http://localhost:5173/react-pipeline/');
3+
cy.visit('http://localhost:5173/LocalLLaMA/');
44
});
55
});

lighthouserc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"ci": {
33
"collect": {
44
"numberOfRuns": 2,
5-
"url": ["http://localhost:3000/react-pipeline"]
5+
"url": ["http://localhost:3000/LocalLLaMA"]
66
},
77
"output": [
88
"html",

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"purpose": "maskable"
2828
}
2929
],
30-
"start_url": "./react-pipeline/",
30+
"start_url": "./LocalLLaMA/",
3131
"display": "standalone",
3232
"theme_color": "#000000",
3333
"background_color": "#ffffff"

puppeteer/snap.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ function delay(time) {
1515
});
1616

1717
const page = await browser.newPage();
18-
await page.goto('http://localhost:5173/react-pipeline/');
18+
await page.goto('http://localhost:5173/LocalLLaMA/');
1919
await delay(2000);
2020
await page.screenshot({ path: 'homepage.png' });
2121

src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import { LazyPage3 } from './component/LazyPage3';
1515

1616
const App = () => (
1717
<ConfigProvider locale={enUS}>
18-
<BrowserRouter basename="/react-pipeline">
18+
<BrowserRouter basename="/LocalLLaMA">
1919
<CustomLayout>
2020
<Routes>
2121
<Route path="/landing" element={<LazyLanding />} />

0 commit comments

Comments
 (0)