-
Notifications
You must be signed in to change notification settings - Fork 2
/
config.ts
44 lines (33 loc) · 1.73 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
import { extendDeploymentConfig } from "scripts";
import { loadEncryptedConfig} from "scripts";
const config = extendDeploymentConfig({ name: "plh_facilitator_zm", parent: "plh_facilitator" });
config.google_drive.sheets_folder_ids = ["1k8zJfBeOm18gYDsk0XmdUm7OFtZDUY9R", "1bdyRi0SsfuuMuh5vpRr5ixGh6xrBOYEn"];
config.google_drive.assets_folder_ids = ["1KcHDI7O4o2_FZ_YlXsz-8OqN3ehsfdVf", "1vP339DiDR4R-3q_goOYBl2wpVYP5yBoo"];
config.git = {
content_repo: "https://github.com/IDEMSInternational/plh-facilitator-app-zm-content.git",
content_tag_latest: "1.1.33",
};
config.android = {
app_id:'international.idems.plh_facilitator_zm',
app_name:'HHPP Yanga',
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.firebase = {
config: loadEncryptedConfig('firebase.json'),
auth:{enabled:true},
crashlytics:{enabled:true}
}
config.web.favicon_asset = "images/logos/hhpp_yanga_logos_icon_colour.svg";
config.api.db_name = "plh_facilitator_zm"
// Hacky fix to point extended deployment to content within its own repo
config.app_data.output_path = "./app_data";
config.app_config.APP_LANGUAGES.default = "gb_en";
config.app_config.APP_SIDEMENU_DEFAULTS.title = "HHPP Yanga";
config.app_config.APP_HEADER_DEFAULTS.title = "HHPP Yanga";
config.app_config.NOTIFICATION_DEFAULTS.title = "New message from HHPP Yanga";
config.app_config.NOTIFICATION_DEFAULTS.text = "You have a new message from HHPP Yanga";
config.error_logging = { dsn: "https://[email protected]/5661"};
export default config;