File tree 1 file changed +7
-3
lines changed
1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -15,14 +15,15 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
15
15
tracing_subscriber:: fmt:: init ( ) ;
16
16
let args: Vec < String > = env:: args ( ) . collect ( ) ;
17
17
let mut port: u16 = 5600 ;
18
+ let mut testing = false ;
18
19
if args. len ( ) > 1 {
19
20
for idx in 1 ..args. len ( ) {
20
21
if args[ idx] == "--port" {
21
22
port = args[ idx + 1 ] . parse ( ) . expect ( "Invalid port number" ) ;
22
23
break ;
23
24
}
24
25
if args[ idx] == "--testing" {
25
- port = 5699 ;
26
+ testing = true ;
26
27
}
27
28
if args[ idx] == "--help" {
28
29
println ! ( "Usage: aw-firebase-sync [--testing] [--port PORT] [--help]" ) ;
@@ -76,8 +77,11 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
76
77
RETURN = events;
77
78
" ;
78
79
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
+ } ;
81
85
82
86
let firebase_client = reqwest:: Client :: new ( ) ;
83
87
You can’t perform that action at this time.
0 commit comments