Quellcode durchsuchen

version to 0.6.6 (#4050)

tags/0.6.6
takatost vor 1 Jahr
Ursprung
Commit
93393e005e
Es ist kein Account mit der E-Mail-Adresse des Committers verbunden
3 geänderte Dateien mit 5 neuen und 5 gelöschten Zeilen
  1. 1
    1
      api/config.py
  2. 3
    3
      docker/docker-compose.yaml
  3. 1
    1
      web/package.json

+ 1
- 1
api/config.py Datei anzeigen

# ------------------------ # ------------------------
# General Configurations. # General Configurations.
# ------------------------ # ------------------------
self.CURRENT_VERSION = "0.6.5"
self.CURRENT_VERSION = "0.6.6"
self.COMMIT_SHA = get_env('COMMIT_SHA') self.COMMIT_SHA = get_env('COMMIT_SHA')
self.EDITION = get_env('EDITION') self.EDITION = get_env('EDITION')
self.DEPLOY_ENV = get_env('DEPLOY_ENV') self.DEPLOY_ENV = get_env('DEPLOY_ENV')

+ 3
- 3
docker/docker-compose.yaml Datei anzeigen

services: services:
# API service # API service
api: api:
image: langgenius/dify-api:0.6.5
image: langgenius/dify-api:0.6.6
restart: always restart: always
environment: environment:
# Startup mode, 'api' starts the API server. # Startup mode, 'api' starts the API server.
# worker service # worker service
# The Celery worker for processing the queue. # The Celery worker for processing the queue.
worker: worker:
image: langgenius/dify-api:0.6.5
image: langgenius/dify-api:0.6.6
restart: always restart: always
environment: environment:
# Startup mode, 'worker' starts the Celery worker for processing the queue. # Startup mode, 'worker' starts the Celery worker for processing the queue.


# Frontend web application. # Frontend web application.
web: web:
image: langgenius/dify-web:0.6.5
image: langgenius/dify-web:0.6.6
restart: always restart: always
environment: environment:
# The base URL of console application api server, refers to the Console base URL of WEB service if console domain is # The base URL of console application api server, refers to the Console base URL of WEB service if console domain is

+ 1
- 1
web/package.json Datei anzeigen

{ {
"name": "dify-web", "name": "dify-web",
"version": "0.6.5",
"version": "0.6.6",
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "next dev", "dev": "next dev",

Laden…
Abbrechen
Speichern