34 lines
1.2 KiB
JavaScript
34 lines
1.2 KiB
JavaScript
/**
|
|
* Custom configuration
|
|
* (sails.config.custom)
|
|
*
|
|
* One-off settings specific to your application.
|
|
*
|
|
* For more information on custom configuration, visit:
|
|
* https://sailsjs.com/config/custom
|
|
*/
|
|
|
|
module.exports.custom = {
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* Any other custom config this Sails app should use during development. *
|
|
* *
|
|
***************************************************************************/
|
|
// mailgunDomain: 'transactional-mail.example.com',
|
|
// mailgunSecret: 'key-testkeyb183848139913858e8abd9a3',
|
|
// stripeSecret: 'sk_test_Zzd814nldl91104qor5911gjald',
|
|
// …
|
|
|
|
googleapi: {
|
|
client_id: "476944563000-d67eqeknurvvlm87bi5aa2246dvds2tj.apps.googleusercontent.com",
|
|
project_id: "testsenaduka",
|
|
auth_uri: "https://accounts.google.com/o/oauth2/auth",
|
|
token_uri: "https://www.googleapis.com/oauth2/v3/token",
|
|
auth_provider_x509_cert_url: "https://www.googleapis.com/oauth2/v1/certs",
|
|
client_secret: "Jx47rhj8uuidT_5kWDbKXWh0",
|
|
redirect_uris: ["http://localhost:1337/home"]
|
|
}
|
|
|
|
};
|