我正在使用 play framework 2.7 实现一个 Web 套接字服务器应用程序我想实现一个远程配置,其中所有应用程序的配置都应该驻留在 github 中。
当我搜索文件来实现它时,我发现下面的 url,
https://github.com/play-rconf
但未列出从 github 访问配置。有没有更好的方法或文档可以从 github 访问配置服务器(如在 Spring 中)?
我正在使用 play framework 2.7 实现一个 Web 套接字服务器应用程序我想实现一个远程配置,其中所有应用程序的配置都应该驻留在 github 中。
当我搜索文件来实现它时,我发现下面的 url,
https://github.com/play-rconf
但未列出从 github 访问配置。有没有更好的方法或文档可以从 github 访问配置服务器(如在 Spring 中)?
您可以通过指定配置文件的 URL 来尝试play-rconf-http :
remote-configuration {
## Provider - HTTP
# ~~~~~
# Retrieves configuration from a simple HTTP server
http {
# URL where is located the configuration file to fetch. You can
# use basic authentication
url = "https://raw.githubusercontent.com/<user>/<repo>/<branch>/<path-to-file>"
url = ${?REMOTECONF_HTTP_URL}
}
}
您也可以使用基本身份验证。
查看从 GitHub 下载单个文件以获取有关 GitHub 链接的更多信息。