generated from IDEMSInternational/app-sample-content
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3bfb409
commit ee2872e
Showing
1 changed file
with
15 additions
and
15 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,37 @@ | ||
import { generateDeploymentConfig } from "scripts"; | ||
const config = generateDeploymentConfig("appbuilder_sample"); | ||
const config = generateDeploymentConfig("conflict_forecast"); | ||
|
||
config.google_drive.sheets_folder_ids = ["10UYZE0yEh36z9suTdXbT-Fb6NzRqLkqr", "1OnK992PdrSlGJyjqE-EIV3P19Rd1z2sl"]; | ||
config.google_drive.assets_folder_ids = ["1SvFOEroXpiaox0d91t2p96_jOJ6Re5oK", "1iIo3YJsyVRL8NRDG4L9xGs_8SK7q8h-g"]; | ||
config.google_drive.sheets_folder_ids = ["[Add folder ID here]"]; | ||
config.google_drive.assets_folder_ids = ["[Add folder ID here]"]; | ||
|
||
config.git = { | ||
content_repo: "https://github.com/IDEMSInternational/app-sample-content.git", | ||
content_tag_latest: "0.0.2", | ||
content_repo: "https://github.com/IDEMSInternational/conflict-forecast-content.git", | ||
content_tag_latest: "0.0.1", | ||
}; | ||
|
||
config.android = { | ||
app_id:'international.idems.app_sample', | ||
app_name:'SAMPLE APP', | ||
app_id:'international.idems.conflict_forecast', | ||
app_name:'Conflict Forecast', | ||
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.ios = { | ||
app_id: 'international.idems.app-sample', | ||
app_name: 'SAMPLE APP', | ||
app_id: 'international.idems.conflict-forecast', | ||
app_name: 'Conflict Forecast', | ||
} | ||
|
||
config.web.favicon_asset = "images/logos/bird_on_light.svg"; | ||
config.api.db_name = "app_sample" | ||
config.api.db_name = "conflict_forecast" | ||
|
||
config.app_config.APP_LANGUAGES.default = "gb_en"; | ||
config.app_config.APP_SIDEMENU_DEFAULTS.title = "SAMPLE APP"; | ||
config.app_config.APP_HEADER_DEFAULTS.title = "SAMPLE APP"; | ||
config.app_config.NOTIFICATION_DEFAULTS.title = "SAMPLE APP"; | ||
config.app_config.NOTIFICATION_DEFAULTS.text = "SAMPLE APP"; | ||
config.app_config.APP_SIDEMENU_DEFAULTS.title = "Conflict Forecast"; | ||
config.app_config.APP_HEADER_DEFAULTS.title = "Conflict Forecast"; | ||
config.app_config.NOTIFICATION_DEFAULTS.title = "Conflict Forecast"; | ||
config.app_config.NOTIFICATION_DEFAULTS.text = "Conflict Forecast"; | ||
|
||
config.error_logging = { dsn: "https://7be381bf4ab14ca5b7b937e417397fcf@app.glitchtip.com/6314"}; | ||
config.error_logging = { dsn: "https://75782445fd454408ad249689e382740f@app.glitchtip.com/7417"}; | ||
|
||
export default config; |