dav-apps / UniversalSoundboard

UniversalSoundboard is a customizable soundboard and music player app for Windows
https://www.microsoft.com/en-us/store/p/universalsoundboard/9nblggh51005
MIT License
14 stars 4 forks source link

Env.Cs #9

Closed babakmdi closed 3 years ago

babakmdi commented 3 years ago

i cant find this on project, should i create it?

Dav2070 commented 3 years ago

Yes, you need to add it manually, it looks like this:

namespace UniversalSoundboard
{
    public class Env
    {
        public static string DavApiKeyDev = "";
        public static string DavApiKeyProd = "";
        public static string AppCenterSecretKey = "";
    }
}
babakmdi commented 3 years ago

thanks, what is the Davapikeydev , DavApiKeyProd ,AppCenterSecretKey ? should this be null?

Dav2070 commented 3 years ago

At least the AppCenterSecretKey is supposed to be secret (that's why it's not in the repo), so you can leave it empty. The dav API keys are for the login functionality, you probably don't need these:

public static string DavApiKeyDev = "eUzs3PQZYweXvumcWvagRHjdUroGe5Mo7kN1inHm";
public static string DavApiKeyProd = "gHgHKRbIjdguCM4cv5481hdiF5hZGWZ4x12Ur-7v";