Skip to content

Commit

Permalink
Added instructions for ApplicationKeys.cs. Resolves #419.
Browse files Browse the repository at this point in the history
  • Loading branch information
David Rudie committed Oct 7, 2022
1 parent 6944341 commit e83751c
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
15 changes: 15 additions & 0 deletions README-DEVS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
To build Snip you'll need to create your own ApplicationKeys.cs file.

The contents of the file should be as follows.

```
namespace Winter
{
public static class ApplicationKeys
{
public static string SpotifyClientId = "";
public static string SpotifyClientSecret = "";
public static string Spotify = Convert.ToBase64String(Encoding.UTF8.GetBytes(string.Format("{0}:{1}", SpotifyClientId, SpotifyClientSecret)));
}
}
```
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
SNIP
====
Copyright 2012-2021 David Rudie <[email protected]>\
Copyright 2012-2022 David Rudie <[email protected]>\
Project Page: [Snip](https://github.com/dlrudie/Snip)

ABOUT
Expand Down

0 comments on commit e83751c

Please sign in to comment.