Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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"]

```