Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bootjp/vrc_panorama_picture_manage
Middleware that replaces images in the VRChat world without updating the world using VRC_Panorama or Video component.
https://github.com/bootjp/vrc_panorama_picture_manage
vrchat vrchat-tool vrchat-world
Last synced: 25 days ago
JSON representation
Middleware that replaces images in the VRChat world without updating the world using VRC_Panorama or Video component.
- Host: GitHub
- URL: https://github.com/bootjp/vrc_panorama_picture_manage
- Owner: bootjp
- License: apache-2.0
- Created: 2019-10-02T04:21:14.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-12-10T14:42:33.000Z (about 1 month ago)
- Last Synced: 2024-12-10T15:32:27.289Z (about 1 month ago)
- Topics: vrchat, vrchat-tool, vrchat-world
- Language: Go
- Homepage:
- Size: 139 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# vrc_panoprama_picture_manage
requirements redis.
```bash
docker run -e "REDIS_HOST=172.17.0.1" bootjp/vrc_panoprama_picture_manage:latest
```## how to use
### running application.
```bash
docker pull ghcr.io/bootjp/vrc_panorama_picture_manage:latest
docker run -p 1323:1323 -e "REDIS_HOST=172.17.0.1" ghcr.io/bootjp/vrc_panorama_picture_manage:latest
# print stdout
current temporary token a4df3e9f-a6dc-4967-ac15-02750314f795
# copy temporary token.
```### setup redirect content.
```bash
curl -X PUT -v -H "Content-Type: application/json" -H "Authorization: Bearer a4df3e9f-a6dc-4967-ac15-02750314f795" http://localhost:1323/api/aaaa -d '{"url":"https://avatars3.githubusercontent.com/u/1306365?v=4"}'
# save to content# check for content redirect.
curl -v http://localhost:1323/v1/aaaa
# check for content mp4
curl -v http://localhost:1323/v2/aaaa
# get content keys
curl http://localhost:1323/api/keys
["aaaa"]```