You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: application/frontend/src/assets/docs/documentation.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -470,23 +470,23 @@ Now let's get a scenario loaded into Fleet Routing App!
470
470
3. Find the GCS bucket that contains scenarios. The bucket name is something you will have configured when you deployed the app from the Google Marketplace, but it's good to validate before trying to copy files there:
471
471
472
472
```bash
473
-
$ gsutil ls
473
+
$ gcloud storage ls
474
474
gs://some-bucket
475
475
gs://dispatcher-solutions-dev/ # This is the one we want!
476
476
gs://another-bucket
477
477
...
478
478
```
479
479
480
-
4. Use the `gsutil` tool to upload the sample scenario.
480
+
4. Use the `gcloud storage` tool to upload the sample scenario.
481
481
482
482
> TIP: By default the application is configured to look for a folder called `scenarios` and a subfolder named after a date, e.g., `2020-01-31`.
483
483
484
484
```bash
485
485
bucket=gs://dispatcher-solutions-dev
486
486
path="scenarios/$(date +%Y-%m-%d)"# Get the right date-formatted destination
0 commit comments