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

Configure Feed

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

Add new demo credentials

+14 -2
+14 -2
src/Applications/UI/Demo.elm
··· 1 1 module UI.Demo exposing (tape) 2 2 3 + import Base64 3 4 import Dict 4 5 import Json.Encode as Json 5 6 import Sources exposing (Service(..), Source) ··· 36 37 37 38 sources : List Source 38 39 sources = 40 + let 41 + key = 42 + "QUtJQTZPUTNFVk1BWFZDRFFINkI=" 43 + |> Base64.decode 44 + |> Result.withDefault "" 45 + 46 + secret = 47 + "Z0hPQkdHRzU1aXc0a0RDbjdjWlRJYTVTUDRZWnpERkRzQnFCYWI4Mg==" 48 + |> Base64.decode 49 + |> Result.withDefault "" 50 + in 39 51 [ { id = "15076402187342" 40 52 , data = 41 53 Dict.fromList 42 - [ ( "accessKey", "AKIAJQCH57YFJ3UERXIA" ) 54 + [ ( "accessKey", key ) 43 55 , ( "bucketName", "ongaku-ryoho-demo" ) 44 56 , ( "directoryPath", "/" ) 45 57 , ( "name", "Demo" ) 46 58 , ( "region", "us-east-1" ) 47 - , ( "secretKey", "/jIC6DA9kc2DZSw3KGsF7Vft/xTARTptGb96kkP2" ) 59 + , ( "secretKey", secret ) 48 60 ] 49 61 , directoryPlaylists = True 50 62 , enabled = True