forked from pingcap/autoflow
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
64 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
ENVIRONMENT=production | ||
|
||
# You can generate a new secret key by running the following command | ||
# $ python3 -c "import secrets; print(secrets.token_urlsafe(32))" | ||
# SECRET_KEY is very important, please do not share it with others, | ||
# SECRET_KEY must greater or equal to 32 characters. | ||
SECRET_KEY= | ||
|
||
# Replace with your own sentry dsn | ||
# SENTRY_DSN=https://[email protected]/4507549478223872 | ||
|
||
# Replace with your own TiDB Serverless connection information, | ||
# currently only TiDB Serverless supports vector search. | ||
# You can quickly create one from https://tidbcloud.com/ | ||
TIDB_HOST=xxxxx.prod.aws.tidbcloud.com | ||
TIDB_USER= | ||
TIDB_PASSWORD= | ||
TIDB_DATABASE= | ||
|
||
|
||
# Replace with your own Jina AI API key | ||
# You can get one from https://jina.ai/reranker/ | ||
JINAAI_API_KEY= | ||
|
||
|
||
# DO NOT CHANGE BELOW CONFIGURATIONS UNLESS YOU KNOW WHAT YOU ARE DOING | ||
CELERY_BROKER_URL=redis://redis:6379/0 | ||
CELERY_RESULT_BACKEND=redis://redis:6379/0 | ||
|
||
DSP_CACHEBOOL=false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,5 @@ | |
.env | ||
|
||
redis-data | ||
data | ||
venv |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1 @@ | ||
#! /usr/bin/env bash | ||
|
||
python /app/bootstrap.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters