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.

Closes #300

+83 -48
+83 -48
src/Static/About/Dev.md
··· 26 26 27 27 ### Amazon S3 28 28 29 - ```shell 30 - # Required 31 - accessKey 32 - bucketName 33 - region 34 - secretKey 29 + ```yaml 30 + kind: 31 + amazon_s3 32 + 33 + data: 34 + # Required 35 + accessKey 36 + bucketName 37 + name 38 + region 39 + secretKey 35 40 36 - # Optional 37 - directoryPath 38 - host 41 + # Optional 42 + directoryPath 43 + host 39 44 ``` 40 45 41 46 ### Azure 42 47 43 - ```shell 44 - # Required 45 - accountName 46 - accountKey 47 - container 48 + ```yaml 49 + kind: 50 + "azure_file" # or "azure_blob" 48 51 49 - # Optional 50 - directoryPath 52 + data: 53 + # Required 54 + accountName 55 + accountKey 56 + container 57 + name 58 + 59 + # Optional 60 + directoryPath 51 61 ``` 52 62 53 63 ### BTFS 54 64 55 - ```shell 56 - # Required 57 - directoryHash 65 + ```yaml 66 + kind: 67 + btfs 68 + 69 + data: 70 + # Required 71 + directoryHash 72 + name 58 73 59 - # Optional 60 - gateway 74 + # Optional 75 + gateway 61 76 ``` 62 77 63 78 ### Dropbox 64 79 65 - ```shell 66 - # Required 67 - accessToken 68 - appKey 80 + ```yaml 81 + kind: 82 + dropbox 83 + 84 + data: 85 + # Required 86 + accessToken 87 + appKey 88 + name 69 89 70 - # Optional 71 - directoryPath 90 + # Optional 91 + directoryPath 72 92 ``` 73 93 74 94 ### Google 75 95 76 - ```shell 77 - # Required 78 - authCode 79 - clientId 80 - clientSecret 96 + ```yaml 97 + kind: 98 + google 99 + 100 + data: 101 + # Required 102 + authCode 103 + clientId 104 + clientSecret 105 + name 81 106 82 - # Optional 83 - folderId 107 + # Optional 108 + folderId 84 109 ``` 85 110 86 111 ### IPFS 87 112 88 - ```shell 89 - # Required 90 - directoryHash 113 + ```yaml 114 + kind: 115 + ipfs 116 + 117 + data: 118 + # Required 119 + directoryHash 120 + name 91 121 92 - # Optional 93 - gateway 94 - ipns ← boolean, `t` of `f` 95 - local ← boolean, `t` of `f` 122 + # Optional 123 + gateway 124 + ipns ← boolean, `t` of `f` 125 + local ← boolean, `t` of `f` 96 126 ``` 97 127 98 128 ### WebDAV 99 129 100 - ```shell 101 - # Required 102 - url 130 + ```yaml 131 + kind: 132 + webdav 103 133 104 - # Optional 105 - directoryPath 106 - password 107 - username 134 + data: 135 + # Required 136 + name 137 + url 138 + 139 + # Optional 140 + directoryPath 141 + password 142 + username 108 143 ```