Compare commits

...

4 Commits

Author SHA1 Message Date
587f866aab Merge 4e56cccea5 into 4d24d73161 2025-02-20 10:46:58 +01:00
4d24d73161 Merge pull request #631 from user1007017/patch-1
Update README.md grammatical error
2025-02-20 10:37:33 +05:30
5f0b87f4a9 Update README.md 2025-02-15 19:06:46 +01:00
4e56cccea5 watch command support 2024-09-23 02:20:58 +03:00
2 changed files with 20 additions and 1 deletions

View File

@ -44,7 +44,7 @@ Want to know more about its architecture and how it works? You can read it [here
- **Normal Mode:** Processes your query and performs a web search.
- **Focus Modes:** Special modes to better answer specific types of questions. Perplexica currently has 6 focus modes:
- **All Mode:** Searches the entire web to find the best results.
- **Writing Assistant Mode:** Helpful for writing tasks that does not require searching the web.
- **Writing Assistant Mode:** Helpful for writing tasks that do not require searching the web.
- **Academic Search Mode:** Finds articles and papers, ideal for academic research.
- **YouTube Search Mode:** Finds YouTube videos based on the search query.
- **Wolfram Alpha Search Mode:** Answers queries that need calculations or data analysis using Wolfram Alpha.

View File

@ -29,6 +29,15 @@ services:
networks:
- perplexica-network
restart: unless-stopped
develop:
watch:
- action: sync
path: ./backend
target: /home/perplexica
ignore:
- node_modules/
- action: rebuild
path: backend.dockerfile
perplexica-frontend:
build:
@ -45,6 +54,16 @@ services:
networks:
- perplexica-network
restart: unless-stopped
develop:
watch:
- action: sync
path: ./frontend
target: /app
ignore:
- node_modules/
- .next/
- action: rebuild
path: app.dockerfile
networks:
perplexica-network: