-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.ts
42 lines (34 loc) · 1.76 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
import { generateDeploymentConfig } from "scripts";
const config = generateDeploymentConfig("plh_facilitator_ug");
/**
* The default config should ideally be a superset of any extended configs
* to allow for easier post-processing
*/
config.google_drive = {
sheets_folder_ids: ["1k8zJfBeOm18gYDsk0XmdUm7OFtZDUY9R","1KDrl35wASEq5SLC6QrlX1JKas6coi3zs"],
assets_folder_ids: ["1KcHDI7O4o2_FZ_YlXsz-8OqN3ehsfdVf","1lfgHb4BezeF2g2GXwPHJDg5ySSxEl_gU"],
};
config.android = {
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-foreground.png",
icon_asset_background_path: "./app_data/assets/android/icon-background.png",
};
config.git = {
content_repo: "https://github.com/IDEMSInternational/plh-facilitator-app-ug-content.git",
content_tag_latest: "1.0.1",
};
config.api.db_name = "plh_facilitator_ug"
config.app_data.output_path = "./app_data";
config.app_config.APP_LANGUAGES.default = "gb_en";
config.app_config.APP_SIDEMENU_DEFAULTS.title = "FacilitatorApp UG";
config.app_config.APP_HEADER_DEFAULTS.title = "FacilitatorApp UG";
config.app_config.NOTIFICATION_DEFAULTS.title = "New message from FacilitatorApp UG";
config.app_config.NOTIFICATION_DEFAULTS.text = "You have a new message from FacilitatorApp UG";
config.app_config.APP_THEMES.available = ["default", "professional"];
config.app_config.APP_THEMES.defaultThemeName = "professional";
config.app_config.APP_UPDATES.enabled = true;
config.app_config.APP_UPDATES.completeUpdateTemplate = "app_update_complete";
config.app_config.APP_FOOTER_DEFAULTS.templateName = "footer";
config.error_logging = { dsn: "https://[email protected]/5660"};
export default config;