This file contains hidden or 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
| # For more information, see the Configuration Guide: | |
| # https://www.librechat.ai/docs/configuration/librechat_yaml | |
| # Configuration version (required) | |
| version: 1.1.5 | |
| # Cache settings: Set to true to enable caching | |
| cache: true | |
| # Custom interface configuration |
This file contains hidden or 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
| #!/bin/bash | |
| # | |
| # Install Oracle JDK 8 for use with SDKMAN | |
| # | |
| set -eu | |
| # This URL can be discovered using https://sites.google.com/view/java-se-download-url-converter | |
| DOWNLOAD_URL="https://javadl.oracle.com/webapps/download/GetFile/1.8.0_331-b09/165374ff4ea84ef0bbd821706e29b123/linux-i586/jdk-8u331-linux-x64.tar.gz" | |
| TARBALL="jdk-8u331-linux-x64.tar.gz" |
This file contains hidden or 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
| #!/bin/bash | |
| # | |
| # Install JDK with url for use with SDKMAN | |
| # | |
| set -eu | |
| # This URL can be discovered using https://d.injdk.cn/download | |
| DOWNLOAD_URL=$1 | |
| TARBALL=$(basename "$DOWNLOAD_URL") |
OlderNewer