Original link: https://www.ioiox.com/archives/158.html
foreword
In the first half of this year, I learned about vuejs and js, so I simply wrote a front-end web page for subscription conversion according to my own needs.
[button color=”dark” icon=”fa fa-github fa-lg” url=”https://github.com/stilleshan/subweb”]stilleshan/subweb[/button]
√> This article is an original article by Stille . It has been practiced, tested, and published. If you need to reprint, please contact the author for authorization, and indicate the reprint address.
Introduction
subweb is a front-end web based on the subconverter subscription conversion back-end program, which allows users to directly enter a subscription link on the web and generate a conversion link directly. It eliminates the need for manual splicing, urlencode and other complicated operations. It supports multi-subscription merge function.
Example
https://sub.ops.ci
前后端示例,可以直接使用.
deploy
docker local version
Suitable for native deployment use
docker run -d --name subweb --restart always -p 18080:80 stilleshan/subweb
Visit http://127.0.0.1:18080
docker online version (custom backend API)
Suitable for server deployment, used with domain name reverse generation
To modify the custom subconverter API address, you need to compile and build the image yourself.
git clone https://github.com/stilleshan/subweb cd subweb # 修改.env.productionn 中VUE_APP_BASE_API_URL 为你subconverter 后端API 地址. docker build -t subweb . # 构建镜像docker run -d --name subweb --restart always -p 18080:80 subweb # 启动容器
Epilogue
If you encounter bugs in use, you can submit an issue directly on GitHub, and you are also welcome to contribute code from various front-end leaders.
This article is reprinted from: https://www.ioiox.com/archives/158.html
This site is for inclusion only, and the copyright belongs to the original author.