-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
sunil
committed
Oct 13, 2024
1 parent
1fd23ee
commit 25b9d1b
Showing
2 changed files
with
35 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
*.old | ||
*.orig | ||
*.zip | ||
*secret* | ||
*app-secret.php | ||
*.ldb | ||
\[Largeurls\]/ | ||
\[backup\]/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<?php | ||
|
||
/************************************************************************** | ||
Copyright (C) Chicken Katsu 2014 -2015 | ||
This code is protected by copyright under the terms of the | ||
Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License | ||
http://creativecommons.org/licenses/by-nc-nd/4.0/legalcode | ||
For licenses that allow for commercial use please contact [email protected] | ||
// USE AT YOUR OWN RISK - NO GUARANTEES OR ANY FORM ARE EITHER EXPRESSED OR IMPLIED | ||
**************************************************************************/ | ||
|
||
class cAppSecret { | ||
const FB_APP = ""; | ||
const FB_SECRET = ""; | ||
|
||
const FB_DEV_APP = ""; | ||
const FB_DEV_SECRET = ""; | ||
|
||
const USE_GOOGLE_ANALYTICS = false; | ||
const GOOGLE_TRACKING_ID = ""; | ||
const GOOGLE_ANALYTICS_ID = ""; | ||
|
||
//others | ||
const NASA_OPEN_MARS_API_KEY = ""; //not used | ||
|
||
//appdynamics | ||
const USE_APPD = false; | ||
const APPD_RUM_APPKEY = ""; | ||
} |