reonokiy
reonokiy
问题截图: 
主要完成了两个方面的工作: - #489 使用Github Actions根据Dockerfile编译镜像,然后**上传到ghcr.io** - #652 从环境变量中读取配置 由于Docker通常使用环境变量或者env_file作为配置项目的方法,在使用Github Actions自动编译镜像之后还修改了config.py来从环境变量读取配置。不过读取环境变量作为配置的部分写的比较粗糙,可能需要修改来匹配项目。 现在使用Docker Compose部署服务的一个示例: ```yaml # docker-compose.yml version: '3' services: gpt_academic: image: ghcr.io/sperjar/gpt_academic:master container_name: gpt_academic environment: GPT_ACADEMIC_API_KEY: your-api-key-here GPT_ACADEMIC_WEB_PORT: 10054 # more...
### Is your feature request related to a problem ? I'm using [Elk](https://elk.zone) as the front end. When I want to search a user's profile without login, the mastodon instance...
### Browsertrix Version v1.14.3-9466e83 ### What did you expect to happen? What happened instead? The presigned get url to access Backblaze B2 seems use [Signature v2 API](https://docs.aws.amazon.com/AmazonS3/latest/API/RESTAuthentication.html#RESTAuthenticationQueryStringAuth) rather than [v4](https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html),...
According to the IPython docs(https://ipython.readthedocs.io/en/stable/whatsnew/version7.html#pending-deprecated-imports), `IPython.core.display` was deprecated in IPython 7.14 and should be replace by `IPython.display`. ## How to reproduce the behaviour example code in jupyter: ```python import spacy...