Skip to content

Commit

Permalink
added secret template
Browse files Browse the repository at this point in the history
  • Loading branch information
sunil committed Oct 13, 2024
1 parent 1fd23ee commit 25b9d1b
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
*.old
*.orig
*.zip
*secret*
*app-secret.php
*.ldb
\[Largeurls\]/
\[backup\]/
Expand Down
34 changes: 34 additions & 0 deletions php/app-config/app-secret-template.php
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 {
//facebook
const FB_APP = "";
const FB_SECRET = "";

const FB_DEV_APP = "";
const FB_DEV_SECRET = "";

//google
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 = "";
}

0 comments on commit 25b9d1b

Please sign in to comment.