Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
dify
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ai-tech
dify
Commits
8d36b533
Commit
8d36b533
authored
Sep 22, 2023
by
jyong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add qdrant configration
parent
724e0537
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
27 additions
and
5 deletions
+27
-5
.env.example
api/.env.example
+3
-3
docker-compose.middleware.yaml
docker/docker-compose.middleware.yaml
+12
-1
docker-compose.yaml
docker/docker-compose.yaml
+12
-1
No files found.
api/.env.example
View file @
8d36b533
...
...
@@ -77,9 +77,9 @@ WEAVIATE_API_KEY=WVF5YThaHlkYwhGUSmCRgsX3tD5ngdN8pkih
WEAVIATE_GRPC_ENABLED=false
WEAVIATE_BATCH_SIZE=100
# Qdrant configuration
, use `path:` prefix for local mode or `https://your-qdrant-cluster-url.qdrant.io` for remote mode
QDRANT_URL=
path:storage/qdrant
QDRANT_API_KEY=
your-qdrant-api-key
# Qdrant configuration
QDRANT_URL=
http://localhost:6333
QDRANT_API_KEY=
WVF5YThaHlkYwhGUSmCRgsX3tD5ngdN8pnnq
# Mail configuration, support: resend
MAIL_TYPE=
...
...
docker/docker-compose.middleware.yaml
View file @
8d36b533
...
...
@@ -49,4 +49,15 @@ services:
AUTHORIZATION_ADMINLIST_ENABLED
:
'
true'
AUTHORIZATION_ADMINLIST_USERS
:
'
hello@dify.ai'
ports
:
-
"
8080:8080"
\ No newline at end of file
-
"
8080:8080"
# The Qdrant vector store.
qdrant
:
image
:
qdrant/qdrant:v1.5.1
ports
:
-
6333:6333
restart
:
always
volumes
:
-
./qdrant/data/:/qdrant/storage
environment
:
QDRANT__SERVICE__API_KEY
:
WVF5YThaHlkYwhGUSmCRgsX3tD5ngdN8pnnq
\ No newline at end of file
docker/docker-compose.yaml
View file @
8d36b533
...
...
@@ -257,4 +257,15 @@ services:
-
api
-
web
ports
:
-
"
80:80"
\ No newline at end of file
-
"
80:80"
# The Qdrant vector store.
qdrant
:
image
:
qdrant/qdrant:v1.5.1
ports
:
-
6333:6333
restart
:
always
volumes
:
-
./qdrant/data/:/qdrant/storage
environment
:
QDRANT__SERVICE__API_KEY
:
WVF5YThaHlkYwhGUSmCRgsX3tD5ngdN8pnnq
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment