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: README.md
+11-10Lines changed: 11 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -64,9 +64,9 @@ Once the applications are *up*, you'll need to add STAC **Collections** and **It
64
64
65
65
Then you can start exploring your dataset with:
66
66
67
-
- the STAC Metadata service [http://localhost:8081](http://localhost:8081)
68
-
- the Raster service [http://localhost:8082](http://localhost:8082)
69
-
- the browser UI [http://localhost:8085](http://localhost:8085)
67
+
- the STAC Metadata service [http://localhost:8081](http://localhost:8081)
68
+
- the Raster service [http://localhost:8082](http://localhost:8082)
69
+
- the browser UI [http://localhost:8085](http://localhost:8085)
70
70
71
71
If you've added a vector dataset to the `public` schema in the Postgres database, they will be available through the **Vector** service at [http://localhost:8083](http://localhost:8083).
72
72
@@ -85,31 +85,32 @@ If you've added a vector dataset to the `public` schema in the Postgres database
Verify that the `cdk` CLI is available. Since `aws-cdk` is installed as a local dependency, you can use the `npx` node package runner tool, that comes with `npm`.
100
101
101
102
```
102
-
npx cdk --version
103
+
uv run npx cdk --version
103
104
```
104
105
105
106
First, synthesize the app
106
107
107
108
```
108
-
npx cdk synth --all
109
+
uv run npx cdk synth --all
109
110
```
110
111
111
112
Then, deploy
112
113
113
114
```
114
-
npx cdk deploy --all --require-approval never
115
+
uv run npx cdk deploy --all --require-approval never
0 commit comments