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
d1ddef29
Commit
d1ddef29
authored
Jul 14, 2023
by
StyleZhang
Browse files
Options
Browse Files
Download
Plain Diff
resolve conflict
parents
8d6884ec
c98f4928
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
7 deletions
+10
-7
config.py
api/config.py
+4
-1
docker-compose.yaml
docker/docker-compose.yaml
+3
-3
index.tsx
...components/header/account-setting/provider-page/index.tsx
+1
-1
package.json
web/package.json
+2
-2
No files found.
api/config.py
View file @
d1ddef29
...
...
@@ -83,7 +83,10 @@ class Config:
self
.
SERVICE_API_URL
=
get_env
(
'API_URL'
)
if
get_env
(
'API_URL'
)
else
get_env
(
'SERVICE_API_URL'
)
self
.
APP_WEB_URL
=
get_env
(
'APP_URL'
)
if
get_env
(
'APP_URL'
)
else
get_env
(
'APP_WEB_URL'
)
self
.
APP_API_URL
=
get_env
(
'APP_URL'
)
if
get_env
(
'APP_URL'
)
else
get_env
(
'APP_API_URL'
)
self
.
CURRENT_VERSION
=
"0.3.7"
self
.
CONSOLE_URL
=
get_env
(
'CONSOLE_URL'
)
self
.
API_URL
=
get_env
(
'API_URL'
)
self
.
APP_URL
=
get_env
(
'APP_URL'
)
self
.
CURRENT_VERSION
=
"0.3.8"
self
.
COMMIT_SHA
=
get_env
(
'COMMIT_SHA'
)
self
.
EDITION
=
"SELF_HOSTED"
self
.
DEPLOY_ENV
=
get_env
(
'DEPLOY_ENV'
)
...
...
docker/docker-compose.yaml
View file @
d1ddef29
...
...
@@ -2,7 +2,7 @@ version: '3.1'
services
:
# API service
api
:
image
:
langgenius/dify-api:0.3.
7
image
:
langgenius/dify-api:0.3.
8
restart
:
always
environment
:
# Startup mode, 'api' starts the API server.
...
...
@@ -124,7 +124,7 @@ services:
# worker service
# The Celery worker for processing the queue.
worker
:
image
:
langgenius/dify-api:0.3.
7
image
:
langgenius/dify-api:0.3.
8
restart
:
always
environment
:
# Startup mode, 'worker' starts the Celery worker for processing the queue.
...
...
@@ -176,7 +176,7 @@ services:
# Frontend web application.
web
:
image
:
langgenius/dify-web:0.3.
7
image
:
langgenius/dify-web:0.3.
8
restart
:
always
environment
:
EDITION
:
SELF_HOSTED
...
...
web/app/components/header/account-setting/provider-page/index.tsx
View file @
d1ddef29
...
...
@@ -93,7 +93,7 @@ const ProviderPage = () => {
))
}
</
div
>
<
div
className=
'
absolute bottom-0 w-full
h-[42px] flex items-center bg-white text-xs text-gray-500'
>
<
div
className=
'
fixed bottom-0 w-[472px]
h-[42px] flex items-center bg-white text-xs text-gray-500'
>
<
LockClosedIcon
className=
'w-3 h-3 mr-1'
/>
{
t
(
'common.provider.encrypted.front'
)
}
<
Link
...
...
web/package.json
View file @
d1ddef29
{
"name"
:
"dify-web"
,
"version"
:
"0.3.
7
"
,
"version"
:
"0.3.
8
"
,
"private"
:
true
,
"scripts"
:
{
"dev"
:
"next dev"
,
...
...
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