Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

📝 docs: update local docker-compose auth to casdoor #3855

Merged
merged 25 commits into from
Sep 24, 2024
Merged
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
925fa22
:construction_worker: ci: casdoor in compose
cy948 Sep 9, 2024
a38272f
:bug: fix: casdoor well-known error
cy948 Sep 9, 2024
11bbfea
:recycle: refactor: move envs
cy948 Sep 9, 2024
b455a83
:construction_worker: ci: add s3 demo data
cy948 Sep 9, 2024
87a993e
:construction_worker: ci: Add start script
cy948 Sep 10, 2024
c399b30
:construction_worker: ci: update setup script
cy948 Sep 11, 2024
7b81a83
:construction_worker: ci: compress asserts
cy948 Sep 11, 2024
a6acb40
:recycle: refactor: rename `demo` to `local`, `local` to `local-logto`
cy948 Sep 11, 2024
f831de0
:bug: fix: file not found
cy948 Sep 11, 2024
4251caf
:recycle: refactro: download asynchronously
cy948 Sep 11, 2024
53d005a
:globe_with_meridians: i18n: support zh_CN in setup.sh
cy948 Sep 11, 2024
d57c406
:bug: fix: tips shown format error
cy948 Sep 11, 2024
98010ef
:recycle: fix: spacing
cy948 Sep 11, 2024
e794f83
:bug: fix: LC error
cy948 Sep 11, 2024
75d191b
:bug: fix: update url to main repo
cy948 Sep 11, 2024
4d62de8
:recycle: refactor: remove annotations
cy948 Sep 11, 2024
0cd8323
:memo: docs: update local-logto docs
cy948 Sep 11, 2024
910d482
:construction_worker: build: add `LLM_VISION_IMAGE_USE_BASE64=1`
cy948 Sep 14, 2024
fb48848
:lipstick: style: remove alert text color
cy948 Sep 21, 2024
25e48a2
:recycle: refactor: use casdoor provider
cy948 Sep 21, 2024
b1e9124
:recycle: refactor: no multithreading
cy948 Sep 21, 2024
f712cc7
:bug: fix: use casdoor provider
cy948 Sep 21, 2024
a9d3bbf
:bug: fix: i18n in lower version of bash
cy948 Sep 21, 2024
cc72431
:lipstick: style: remove color
cy948 Sep 21, 2024
6094095
:recycle: refactor: - duplicate casdoor ports
cy948 Sep 24, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
🐛 fix: tips shown format error
  • Loading branch information
cy948 committed Sep 21, 2024
commit d57c406e78379797f829dd11667fda0c5b343d77
12 changes: 6 additions & 6 deletions docker-compose/local/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
# == Env settings ==
# ==================
# Set locale to UTF-8 to support Chinese characters
export LANG=en_US.UTF-8
export LC_ALL=en_US.UTF-8
# export LANG=zh_CN.UTF-8
# export LC_ALL=zh_CN.UTF-8

# ===============
# == Variables ==
Expand Down Expand Up @@ -177,8 +177,8 @@ extract_file "s3_data.tar.gz" "."
extract_file "init_data.json.tar.gz" "."

# Display final message
echo -e "\n" $(show_message "tips_run_command") "\n"
printf "\n%s\n" "$(show_message "tips_run_command")"
print_centered "docker compose up" "green"
printf $(show_message "tips_show_documentation")
printf "\e[34m%s\e[0m\n" $(show_message "tips_show_documentation_url")
printf "\n\e[33m%s\e[0m\n" $(show_message "tips_warning")
printf "\n%s" "$(show_message "tips_show_documentation")"
printf "\e[34m%s\e[0m" $(show_message "tips_show_documentation_url")
printf "\n\e[33m%s\e[0m\n" "$(show_message "tips_warning")"