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
<?php | |
//file: /.env.local.php | |
// return the configuration for the 'local' environment | |
return array( | |
'db_host' => '127.0.0.1', | |
'db_name' => 'DB_NAME', // specify database name | |
'db_user' => 'DB_USER', // specify database username | |
'db_pass' => 'DB_PASS', // specify database password | |
); |
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
var Storekit = require('ti.storekit'), | |
DZDynamicType = require('com.dezinezync.dynamictype'), | |
lang = Ti.App.Properties.getString('language'); | |
Storekit.receiptVerificationSandbox = (Ti.App.deployType !== 'production'); | |
Storekit.bundleVersion = 2.3.1; //TODO set current bundle version here | |
Storekit.bundleIdentifier = bundle; //TODO set bundle id here | |
var verifyingReceipts = true; | |
var win = Ti.UI.createWindow({ |