-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.php
25 lines (17 loc) · 811 Bytes
/
config.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php
////////////////////////////////////////////////////
// SimpleAppStore API - version 1.0
// https://github.com/anonwins/SimpleAppStore
////////////////////////////////////////////////////
# Required to change
# You should change this from the default. It's the passcode for the apk-upload api
$_passcode = 'PlsChangeThisToWhateverTextYouWantPlsMakeItHardToGuess9192837647';
# Change only if necessary
# This is the accepted domain of AI2. Used in the apk-upload api
$_origin = 'http://ai2.appinventor.mit.edu';
# Don't change
# Internal paths. Change only if you understand what you're doing.
$_apk_dir = './apk'; // this is the dir the apk's are stored
$_img_dir = './img'; // this is the dir the apps images are stored
$_app_list_path = './app-list.json'; // this is the json file you
?>