From 929ce92e81d8b6dd227c93d402256e6d26e0d8be Mon Sep 17 00:00:00 2001 From: Horea Porutiu Date: Wed, 21 Feb 2024 10:16:33 +0100 Subject: [PATCH] adding app demo --- examples/terms-modal-banner-s3/README.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/examples/terms-modal-banner-s3/README.md b/examples/terms-modal-banner-s3/README.md index 2094f248b..841ff1607 100644 --- a/examples/terms-modal-banner-s3/README.md +++ b/examples/terms-modal-banner-s3/README.md @@ -94,9 +94,12 @@ https://github.com/miroapp/app-examples/assets/10428517/1e6862de-8617-46ef-b265- ``` . -├── webassets <-- HTML and JavaScript files for the Miro app -├── getSignedURL <-- Source code for the serverless backend -├── samconfig.toml <-- Configuration code for AWS SAM (AWS Serverless Application Model) +├── getSignedURL <-- Source code for the serverless backend. +│ └── app.js // The code to add userID to S3 bucket once user accepts terms. +├── webassets <-- HTML and JavaScript files for the Miro app. +│ ├── app.html // The code which uses Miro WebSDK to open the modal for the user. +│ └── modal.html // The code which serves as the UI for the terms which the user will accept. + ├── template.yaml <-- The yaml code used to generate AWS resources via AWS SAM. ```