forked from rufuspollock/s3-bucket-listing
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add buckets for arcade, physicell, and readdy outputs, exclude direct…
…ories, and better error feedback
- Loading branch information
1 parent
11a8e11
commit 6a4aad3
Showing
7 changed files
with
114 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<html> | ||
<head> | ||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | ||
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Overpass:wght@200;400;600&display=swap"> | ||
<link rel="stylesheet" href="main.css"> | ||
</head> | ||
<body> | ||
<a href="index.html">← Back</a> | ||
<h1>ARCADE Simularium Library</h1> | ||
<div id="listing"></div> | ||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script> | ||
<script type="text/javascript"> | ||
var BUCKET_URL = 'https://arcade-working-bucket.s3.us-west-2.amazonaws.com'; | ||
</script> | ||
<script src="list.js"></script> | ||
</body> | ||
</html> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<html> | ||
<head> | ||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | ||
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Overpass:wght@200;400;600&display=swap"> | ||
<link rel="stylesheet" href="main.css"> | ||
</head> | ||
<body> | ||
<a href="index.html">← Back</a> | ||
<h1>AICS PhysiCell Simularium Library</h1> | ||
<div id="listing"></div> | ||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script> | ||
<script type="text/javascript"> | ||
var BUCKET_URL = 'https://physicell-working-bucket.s3.us-west-2.amazonaws.com'; | ||
</script> | ||
<script src="list.js"></script> | ||
</body> | ||
</html> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<html> | ||
<head> | ||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | ||
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Overpass:wght@200;400;600&display=swap"> | ||
<link rel="stylesheet" href="main.css"> | ||
</head> | ||
<body> | ||
<a href="index.html">← Back</a> | ||
<h1>AICS ReaDDy Simularium Library</h1> | ||
<div id="listing"></div> | ||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script> | ||
<script type="text/javascript"> | ||
var BUCKET_URL = 'https://readdy-working-bucket.s3.us-west-2.amazonaws.com'; | ||
var EXCLUDE_DIRS = ['z_archive']; | ||
</script> | ||
<script src="list.js"></script> | ||
</body> | ||
</html> | ||
|