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: typescript/quicksight/README.md
+15-4Lines changed: 15 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,9 +17,23 @@
17
17
18
18
This project demonstrates how to set up Amazon Quicksight. It will set up a S3 Bucket, import some test data and makes it available as a datasource to quicksight.
19
19
20
+
With this setup you can create analysis in the console to view e.g. the world-population data:
21
+
world-population.csv file in data directory taken from https://data.worldbank.org/indicator/SP.POP.TOTL
22
+
License: CC BY-4.0
23
+
24
+
## Build
25
+
26
+
To build this app, you need to be in this example's root folder. Then run the following:
27
+
28
+
```bash
29
+
npm install -g aws-cdk
30
+
npm install
31
+
npm run build
32
+
```
33
+
20
34
## Deploy
21
35
22
-
1. Create a quicksight account [here](https://docs.aws.amazon.com/quicksight/latest/user/signing-up.html).
36
+
1. Create a quicksight account [by following these instructions](https://docs.aws.amazon.com/quicksight/latest/user/signing-up.html).
23
37
2. Use the arn of the quicksight account and pass it to cdk using a context `cdk deploy --context quicksightAccountArn=<arn>`
24
38
25
39
## Useful commands
@@ -30,6 +44,3 @@ This project demonstrates how to set up Amazon Quicksight. It will set up a S3 B
30
44
*`npx cdk deploy` deploy this stack to your default AWS account/region
31
45
*`npx cdk diff` compare deployed stack with current state
32
46
*`npx cdk synth` emits the synthesized CloudFormation template
33
-
34
-
world-population.csv file in data directory taken from https://data.worldbank.org/indicator/SP.POP.TOTL
0 commit comments