feat(app): rename to 'vane'

This commit is contained in:
ItzCrazyKns
2026-03-09 18:05:31 +05:30
parent 86274326e9
commit 39c0f198b5
23 changed files with 169 additions and 171 deletions

View File

@@ -1,60 +1,60 @@
# Update Perplexica to the latest version
# Update Vane to the latest version
To update Perplexica to the latest version, follow these steps:
To update Vane to the latest version, follow these steps:
## For Docker users (Using pre-built images)
Simply pull the latest image and restart your container:
```bash
docker pull itzcrazykns1337/perplexica:latest
docker stop perplexica
docker rm perplexica
docker run -d -p 3000:3000 -v perplexica-data:/home/perplexica/data --name perplexica itzcrazykns1337/perplexica:latest
docker pull itzcrazykns1337/vane:latest
docker stop vane
docker rm vane
docker run -d -p 3000:3000 -v vane-data:/home/vane/data --name vane itzcrazykns1337/vane:latest
```
For slim version:
```bash
docker pull itzcrazykns1337/perplexica:slim-latest
docker stop perplexica
docker rm perplexica
docker run -d -p 3000:3000 -e SEARXNG_API_URL=http://your-searxng-url:8080 -v perplexica-data:/home/perplexica/data --name perplexica itzcrazykns1337/perplexica:slim-latest
docker pull itzcrazykns1337/vane:slim-latest
docker stop vane
docker rm vane
docker run -d -p 3000:3000 -e SEARXNG_API_URL=http://your-searxng-url:8080 -v vane-data:/home/vane/data --name vane itzcrazykns1337/vane:slim-latest
```
Once updated, go to http://localhost:3000 and verify the latest changes. Your settings are preserved automatically.
## For Docker users (Building from source)
1. Navigate to your Perplexica directory and pull the latest changes:
1. Navigate to your Vane directory and pull the latest changes:
```bash
cd Perplexica
cd Vane
git pull origin master
```
2. Rebuild the Docker image:
```bash
docker build -t perplexica .
docker build -t vane .
```
3. Stop and remove the old container, then start the new one:
```bash
docker stop perplexica
docker rm perplexica
docker run -p 3000:3000 -p 8080:8080 --name perplexica perplexica
docker stop vane
docker rm vane
docker run -p 3000:3000 -p 8080:8080 --name vane vane
```
4. Once the command completes, go to http://localhost:3000 and verify the latest changes.
## For non-Docker users
1. Navigate to your Perplexica directory and pull the latest changes:
1. Navigate to your Vane directory and pull the latest changes:
```bash
cd Perplexica
cd Vane
git pull origin master
```