A music player that connects to your cloud/distributed storage.
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update about page

+10 -10
+10 -10
src/Static/About/About.md
··· 88 88 Add the domain of the app, with the protocol, to the __list of allowed origins__. 89 89 90 90 ```shell 91 - btfs config --json API.HTTPHeaders.Access-Control-Allow-Origin '["https://diffuse.sh", "http://127.0.0.1:8080", "http://127.0.0.1:44999"]' 91 + btfs config --json API.HTTPHeaders.Access-Control-Allow-Origin '["https://diffuse.sh", "http://diffuse.sh.ipns.localhost:8080", "http://127.0.0.1:44999"]' 92 92 ``` 93 93 94 94 You can also make this change in the Web UI, you'll find it under "Settings → BTFS Config". 95 95 96 - ```json 96 + ```javascript 97 97 { 98 98 "API": { 99 99 "HTTPHeaders": { 100 100 "Access-Control-Allow-Origin": [ 101 - "https://diffuse.sh", 102 - "http://127.0.0.1:8080", 103 - "http://127.0.0.1:44999" 101 + "https://diffuse.sh", // 🎵 Default 102 + "http://diffuse.sh.ipns.localhost:8080", // IPNS 103 + "http://127.0.0.1:44999" // Electron app 104 104 ] 105 105 } 106 106 } ··· 126 126 Add the domain of the app, with the protocol, to the __list of allowed origins__. 127 127 128 128 ```shell 129 - ipfs config --json API.HTTPHeaders.Access-Control-Allow-Origin '["https://diffuse.sh", "http://127.0.0.1:8080", "http://127.0.0.1:44999"]' 129 + ipfs config --json API.HTTPHeaders.Access-Control-Allow-Origin '["https://diffuse.sh", "http://diffuse.sh.ipns.localhost:8080", "http://127.0.0.1:44999"]' 130 130 ``` 131 131 132 132 You can also make this change in the Web UI, you'll find it under "Settings → IPFS Config". 133 133 134 - ```json 134 + ```javascript 135 135 { 136 136 "API": { 137 137 "HTTPHeaders": { 138 138 "Access-Control-Allow-Origin": [ 139 - "https://diffuse.sh", 140 - "http://127.0.0.1:8080", 141 - "http://127.0.0.1:44999" 139 + "https://diffuse.sh", // 🎵 Default 140 + "http://diffuse.sh.ipns.localhost:8080", // IPNS through IPFS Companion 141 + "http://127.0.0.1:44999" // Electron app 142 142 ] 143 143 } 144 144 }