Skip to content

Commit 0f51a9f

Browse files
committed
chore: conditionally set the firebase url used from a test flag
1 parent b973c4b commit 0f51a9f

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

aw-firebase-sync/src/main.rs

+7-3
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,15 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
1515
tracing_subscriber::fmt::init();
1616
let args: Vec<String> = env::args().collect();
1717
let mut port: u16 = 5600;
18+
let mut testing = false;
1819
if args.len() > 1 {
1920
for idx in 1..args.len() {
2021
if args[idx] == "--port" {
2122
port = args[idx + 1].parse().expect("Invalid port number");
2223
break;
2324
}
2425
if args[idx] == "--testing" {
25-
port = 5699;
26+
testing = true;
2627
}
2728
if args[idx] == "--help" {
2829
println!("Usage: aw-firebase-sync [--testing] [--port PORT] [--help]");
@@ -76,8 +77,11 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
7677
RETURN = events;
7778
";
7879

79-
let firebase_url = "https://us-central1-aw-mockup.cloudfunctions.net/uploadData";
80-
// let firebase_url = "http://localhost:5001/aw-mockup/us-central1/uploadData";
80+
let firebase_url = if testing {
81+
"http://localhost:5001/aw-mockup/us-central1/uploadData"
82+
} else {
83+
"https://us-central1-aw-mockup.cloudfunctions.net/uploadData"
84+
};
8185

8286
let firebase_client = reqwest::Client::new();
8387

0 commit comments

Comments
 (0)