Skip to content
This repository has been archived by the owner on Aug 9, 2021. It is now read-only.

Commit

Permalink
feat: iframe versoning
Browse files Browse the repository at this point in the history
  • Loading branch information
zachferland committed May 30, 2020
1 parent a7a1d24 commit a74b528
Show file tree
Hide file tree
Showing 6 changed files with 705 additions and 30,773 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
arguments: '--acl public-read --cache 604800'
from: public
overwrite: true
to: 's3://3id-connect-dev'
to: 's3://3id-connect-dev/v1'
- run:
name: "Invalidate CloudFront Cache"
command: aws cloudfront create-invalidation --distribution-id E3SV2UNQUEOU2O --paths /*
Expand All @@ -74,7 +74,7 @@ jobs:
arguments: '--acl public-read --cache 604800'
from: public
overwrite: true
to: 's3://3id-connect-prod'
to: 's3://3id-connect-prod/v1'
- run:
name: "Invalidate CloudFront Cache"
command: aws cloudfront create-invalidation --distribution-id E1CFVBE8FYHOZ0 --paths /*
Expand Down
Empty file added example/app.js
Empty file.
28 changes: 28 additions & 0 deletions example/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<!DOCTYPE html>
<html>

<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>3Box Account</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="app.css">
<style>
body {
background-color: #f7f7f9;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
</style>
</head>

<body>
<div id="root"></div>
</body>

<script type="text/javascript" src="index.js"></script>
</html>
Loading

0 comments on commit a74b528

Please sign in to comment.