WIP. A little custom music server
0
fork

Configure Feed

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

add bruno api definition

+70
+15
api-testing/bruno.json
··· 1 + { 2 + "version": "1", 3 + "name": "boombox", 4 + "type": "collection", 5 + "ignore": [ 6 + "node_modules", 7 + ".git" 8 + ], 9 + "size": 0, 10 + "filesCount": 0, 11 + "presets": { 12 + "requestType": "http", 13 + "requestUrl": "http://localhost:3003" 14 + } 15 + }
+2
api-testing/environments/dev.bru
··· 1 + vars { 2 + }
+19
api-testing/get-album-by-id.bru
··· 1 + meta { 2 + name: get-album-by-id 3 + type: http 4 + seq: 2 5 + } 6 + 7 + get { 8 + url: http://localhost:3003/album/:id 9 + body: none 10 + auth: inherit 11 + } 12 + 13 + params:path { 14 + id: 01994d9b-0c5c-7003-862e-ad9a8de164df 15 + } 16 + 17 + settings { 18 + encodeUrl: true 19 + }
+15
api-testing/get-all-songs.bru
··· 1 + meta { 2 + name: get-all-songs 3 + type: http 4 + seq: 1 5 + } 6 + 7 + get { 8 + url: http://localhost:3003/songs 9 + body: none 10 + auth: inherit 11 + } 12 + 13 + settings { 14 + encodeUrl: true 15 + }
+19
api-testing/get-file-by-id.bru
··· 1 + meta { 2 + name: get-file-by-id 3 + type: http 4 + seq: 3 5 + } 6 + 7 + get { 8 + url: http://localhost:3003/file/:id 9 + body: none 10 + auth: inherit 11 + } 12 + 13 + params:path { 14 + id: 01994d9b-0c54-7000-86f6-4d803af135f2 15 + } 16 + 17 + settings { 18 + encodeUrl: true 19 + }