-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.ts
49 lines (39 loc) · 2.02 KB
/
config.ts
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import { generateDeploymentConfig } from "scripts";
const config = generateDeploymentConfig("pfr");
/**
* The default config should ideally be a superset of any extended configs
* to allow for easier post-processing
*/
config.google_drive.sheets_folder_ids = [ "1NCaqs4T3sbFVV0jh_aTmbeSI517WchVv" ]
config.google_drive.assets_folder_ids = [ "1gFEuVLP4r2FVLTuPSMMul5RxhGpYy8TU" ]
config.git = {
content_repo: "https://github.com/IDEMSInternational/pfr-app-content.git",
content_tag_latest: "1.1.26",
};
config.error_logging = {
dsn: "https://[email protected]/2975",
};
config.android = {
app_id:'international.idems.parenting_for_respectability',
app_name:'PfR Parenting App',
splash_asset_path: "./app_data/assets/android/splash.png",
icon_asset_path: "./app_data/assets/android/icon.png",
icon_asset_foreground_path: "./app_data/assets/android/icon.png",
icon_asset_background_path: "./app_data/assets/android/icon-background.png",
zoom_enabled: true
}
config.api.db_name = "pfr"
config.app_data.output_path = "./app_data";
//To reduce app size, exclude draft and uncompressed assets
config.app_data.assets_filter_function = (fileEntry) => !fileEntry.relativePath.includes("draft") && !fileEntry.relativePath.includes("uncompressed")
//To reduce app size, exclude draft and uncompressed assets
config.app_data.assets_filter_function = (fileEntry) => !fileEntry.relativePath.includes("draft") && !fileEntry.relativePath.includes("uncompressed")
config.app_config.APP_THEMES.available = ["default", "pfr"];
config.app_config.APP_THEMES.defaultThemeName = "pfr";
config.app_config.APP_SIDEMENU_DEFAULTS.title = "PfR Parenting App";
config.app_config.APP_HEADER_DEFAULTS.title = "PfR Parenting App";
config.app_config.NOTIFICATION_DEFAULTS.title = "New message from PfR Parenting App";
config.app_config.NOTIFICATION_DEFAULTS.text = "You have a new message from PfR Parenting App";
config.app_config.TASKS.enabled = true;
config.app_config.TASKS.taskGroupsListName = "session_tasks"
export default config;