dify/api
2023-06-27 15:51:55 +08:00
..
constants Initial commit 2023-05-15 08:51:32 +08:00
controllers feat: upgrade langchain (#430) 2023-06-25 16:49:14 +08:00
core fix: template parse error when pre prompt include {{}} (#462) 2023-06-27 15:51:55 +08:00
docker Initial commit 2023-05-15 08:51:32 +08:00
events Initial commit 2023-05-15 08:51:32 +08:00
extensions feat: upgrade langchain (#430) 2023-06-25 16:49:14 +08:00
libs feat: upgrade langchain (#430) 2023-06-25 16:49:14 +08:00
migrations Feat/dataset notion import (#392) 2023-06-16 21:47:51 +08:00
models feat: upgrade langchain (#430) 2023-06-25 16:49:14 +08:00
services feat: upgrade langchain (#430) 2023-06-25 16:49:14 +08:00
tasks feat: upgrade langchain (#430) 2023-06-25 16:49:14 +08:00
tests Initial commit 2023-05-15 08:51:32 +08:00
.dockerignore Initial commit 2023-05-15 08:51:32 +08:00
.env.example fix REDIS_USERNAME format (#414) 2023-06-19 22:14:47 +08:00
app.py feat: upgrade langchain (#430) 2023-06-25 16:49:14 +08:00
commands.py feat: upgrade langchain (#430) 2023-06-25 16:49:14 +08:00
config.py feat: upgrade langchain (#430) 2023-06-25 16:49:14 +08:00
Dockerfile Initial commit 2023-05-15 08:51:32 +08:00
README.md doc: add annaconda info (#402) 2023-06-19 11:09:40 +08:00
requirements.txt feat: upgrade langchain (#430) 2023-06-25 16:49:14 +08:00

Dify Backend API

Usage

  1. Start the docker-compose stack

    The backend require some middleware, including PostgreSQL, Redis, and Weaviate, which can be started together using docker-compose.

    cd ../docker
    docker-compose -f docker-compose.middleware.yaml up -d
    cd ../api
    
  2. Copy .env.example to .env

  3. Generate a SECRET_KEY in the .env file.

    openssl rand -base64 42
    

3.5 If you use annaconda, create a new environment and activate it

conda create --name dify python=3.10
conda activate dify
  1. Install dependencies

    pip install -r requirements.txt
    
  2. Run migrate

    Before the first launch, migrate the database to the latest version.

    flask db upgrade
    
  3. Start backend:

    flask run --host 0.0.0.0 --port=5001 --debug
    
  4. Setup your application by visiting http://localhost:5001/console/api/setup or other apis...

  5. If you need to debug local async processing, you can run celery -A app.celery worker, celery can do dataset importing and other async tasks.