Skip to content

Commit

Permalink
Update config.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisMarsh82 authored Jul 24, 2024
1 parent 3bfb409 commit ee2872e
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions config.ts
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;

0 comments on commit ee2872e

Please sign in to comment.