feat(app): rename standalone to slim

This commit is contained in:
ItzCrazyKns
2025-10-21 15:03:15 +05:30
parent 82efd35b55
commit 92ff47110d
4 changed files with 14 additions and 13 deletions

View File

@@ -16,8 +16,8 @@ jobs:
variant:
- name: full
dockerfile: Dockerfile
- name: standalone
dockerfile: Dockerfile.standalone
- name: slim
dockerfile: Dockerfile.slim
steps:
- name: Checkout code
uses: actions/checkout@v3
@@ -84,8 +84,8 @@ jobs:
variant:
- name: full
dockerfile: Dockerfile
- name: standalone
dockerfile: Dockerfile.standalone
- name: slim
dockerfile: Dockerfile.slim
steps:
- name: Checkout code
uses: actions/checkout@v3
@@ -150,7 +150,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
variant: [full, standalone]
variant: [full, slim]
steps:
- name: Log in to DockerHub
uses: docker/login-action@v2

View File

@@ -79,7 +79,7 @@ There are mainly 2 ways of installing Perplexica - With Docker, Without Docker.
Perplexica can be easily run using Docker. Simply run the following command:
```bash
docker run -p 3000:3000 -p 8080:8080 --name perplexica itzcrazykns1337/perplexica:latest
docker run -p 3000:3000 --name perplexica itzcrazykns1337/perplexica:latest
```
This will pull and start the Perplexica container with the bundled SearxNG search engine. Once running, open your browser and navigate to http://localhost:3000. You can then configure your settings (API keys, models, etc.) directly in the setup screen.
@@ -88,13 +88,14 @@ This will pull and start the Perplexica container with the bundled SearxNG searc
#### Using Perplexica with Your Own SearxNG Instance
If you already have SearxNG running, you can use the standalone version of Perplexica:
If you already have SearxNG running, you can use the slim version of Perplexica:
```bash
docker run -p 3000:3000 -e SEARXNG_API_URL=http://your-searxng-url:8080 --name perplexica itzcrazykns1337/perplexica:standalone-latest
docker run -p 3000:3000 -e SEARXNG_API_URL=http://your-searxng-url:8080 --name perplexica itzcrazykns1337/perplexica:slim-latest
```
**Important**: Make sure your SearxNG instance has:
- JSON format enabled in the settings
- Wolfram Alpha search engine enabled
@@ -117,7 +118,7 @@ If you prefer to build from source or need more control:
```bash
docker build -t perplexica .
docker run -p 3000:3000 -p 8080:8080 --name perplexica perplexica
docker run -p 3000:3000 --name perplexica perplexica
```
5. Access Perplexica at http://localhost:3000 and configure your settings in the setup screen.

View File

@@ -10,16 +10,16 @@ Simply pull the latest image and restart your container:
docker pull itzcrazykns1337/perplexica:latest
docker stop perplexica
docker rm perplexica
docker run -p 3000:3000 -p 8080:8080 --name perplexica itzcrazykns1337/perplexica:latest
docker run -p 3000:3000 --name perplexica itzcrazykns1337/perplexica:latest
```
For standalone version:
For slim version:
```bash
docker pull itzcrazykns1337/perplexica:standalone-latest
docker pull itzcrazykns1337/perplexica:slim-latest
docker stop perplexica
docker rm perplexica
docker run -p 3000:3000 -e SEARXNG_API_URL=http://your-searxng-url:8080 --name perplexica itzcrazykns1337/perplexica:standalone-latest
docker run -p 3000:3000 -e SEARXNG_API_URL=http://your-searxng-url:8080 --name perplexica itzcrazykns1337/perplexica:slim-latest
```
Once updated, go to http://localhost:3000 and verify the latest changes. Your settings are preserved automatically.