FIXED server on docker side
Fixed server on docker side, add Makefile, add file-worker/dashboard and fixed ingestion-worker in docker-compose,yml Issue: #1474
You will probably no longer need the .env.chat .env.dashboard .env.docker-compose .env.search .env.server files. I created .env.example which contains all the necessary variables to run docker-compose, just copy "cp .env.example .env" or use the make command (it will copy this file if .env does not exist). In the .env file, I replaced fetching from environment variables for security reasons, so that no one's api keys are accidentally shared. In the make file, I added docker volume cleanup.
Now all you need to do is clone the repo, add the most important variables to the ~/.bashrc file export OPENAI_API_KEY="sk-" export EMBEDDING_SERVER_ORIGIN="http://" export SPARSE_SERVER_DOC_ORIGIN="http://" export RERANKER_SERVER_ORIGIN="http://" export SPARSE_SERVER_QUERY_ORIGIN="http://"
restart bash or source ~./bashrc type 'make' and after a while visit e.g. 'http://localhost:5173', we will be redirected to create an account and finally it will take us to the dashboard.