Add "release" configuration for BACKEND_URL

This commit is contained in:
Stephen Seo 2022-04-06 19:40:40 +09:00
parent 567cec9500
commit 2e0b29ed70
1 changed files with 4 additions and 0 deletions

View File

@ -15,4 +15,8 @@ pub const PLAYER_CLEANUP_TIMEOUT: u64 = 300;
pub const BACKEND_TICK_DURATION_MILLIS: i32 = 500;
// TODO: Change this to "https://asdm.seodisparate.com/api" when backend is installed
#[cfg(debug_assertions)]
pub const BACKEND_URL: &str = "http://testlocalhost/api";
#[cfg(not(debug_assertions))]
pub const BACKEND_URL: &str = "https://asdm.seodisparate.com/api";