-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into index-meta-fields
- Loading branch information
Showing
49 changed files
with
206 additions
and
237 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
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 |
---|---|---|
@@ -1,7 +1,19 @@ | ||
FROM nginx:1.24.0@sha256:a195f9fb6503531660b25f9aeefef1f48bbaf56f46da04bffe1568abb3d3aff6 | ||
FROM amazonlinux:2023.2.20231011.0 | ||
MAINTAINER Quilt Data, Inc. [email protected] | ||
|
||
ENV LC_ALL=C.UTF-8 | ||
ENV LANG=C.UTF-8 | ||
|
||
# Upgrade and install dependencies | ||
# gettext is required by envsubst | ||
RUN dnf -y upgrade && dnf -y install gettext nginx && dnf -y clean all | ||
|
||
# Make logs show up in Docker output | ||
RUN ln -sf /dev/stdout /var/log/nginx/access.log && \ | ||
ln -sf /dev/stderr /var/log/nginx/error.log | ||
|
||
# Set up nginx | ||
COPY nginx.conf /etc/nginx/nginx.conf | ||
COPY nginx-web.conf /etc/nginx/conf.d/default.conf | ||
|
||
# Copy pre-built catalog assets to nginx | ||
|
@@ -11,6 +23,9 @@ COPY build /usr/share/nginx/html | |
# Copy config file | ||
COPY config.json.tmpl config.json.tmpl | ||
|
||
# Use SIGQUIT for a "graceful" shutdown | ||
STOPSIGNAL SIGQUIT | ||
|
||
# Substitute environment variables into config.json and generate config.js based on that before starting nginx. | ||
# Note: use "exec" because otherwise the shell will catch Ctrl-C and other signals. | ||
CMD envsubst < config.json.tmpl > /usr/share/nginx/html/config.json \ | ||
|
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 |
---|---|---|
|
@@ -32,6 +32,7 @@ const SANITIZE_OPTS = { | |
'aside', | ||
'b', | ||
'blockquote', | ||
'br', | ||
'caption', | ||
'code', | ||
'col', | ||
|
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
Binary file not shown.
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 |
---|---|---|
|
@@ -13,45 +13,14 @@ import Layout from 'website/components/Layout' | |
import Lede from 'website/components/Lede' | ||
import Section from 'website/components/Section' | ||
import Tabs from 'website/components/Tabs' | ||
import logos from 'website/pages/Landing/Logos/list' | ||
|
||
import imageArch from 'website/pages/Landing/Assets/quilt-architecture.png' | ||
import logoAllencell from 'website/pages/Landing/Logos/logo-allencell.png' | ||
import logoCelsius from 'website/pages/Landing/Logos/logo-celsius.png' | ||
import logoNeumora from 'website/pages/Landing/Logos/logo-neumora.png' | ||
import logoObsidian from 'website/pages/Landing/Logos/logo-obsidian.png' | ||
import logoStemson from 'website/pages/Landing/Logos/logo-stemson.png' | ||
import logoVir from 'website/pages/Landing/Logos/logo-vir.png' | ||
|
||
const SALES_ADDRESS = 'mailto:[email protected]' | ||
const DECK_URL = | ||
'https://quilt-web-public.s3.amazonaws.com/deck/Quilt%E2%80%94the+data+hub+for+biotech.pdf' | ||
|
||
const logos = [ | ||
{ | ||
src: logoCelsius, | ||
title: 'Celsius Therapeutics', | ||
}, | ||
{ | ||
src: logoVir, | ||
title: 'Vir Bio', | ||
}, | ||
{ | ||
src: logoNeumora, | ||
title: 'Neumora Therapeutics', | ||
}, | ||
{ | ||
src: logoObsidian, | ||
title: 'Obsidian Therapeutics', | ||
}, | ||
{ | ||
src: logoStemson, | ||
title: 'Stemson Therapeutics', | ||
}, | ||
{ | ||
src: logoAllencell, | ||
title: 'Allen Institute for Cell Science', | ||
}, | ||
] | ||
const useVideoStyles = M.makeStyles({ | ||
wrapper: { | ||
maxWidth: '900px', | ||
|
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,44 @@ | ||
import logoAllencell from './logo-allencell.png' | ||
import logoDecibel from './logo-decibel.png' | ||
import logoDspconcepts from './logo-dspconcepts.svg' | ||
import logoHudl from './logo-hudl.png' | ||
import logoInari from './logo-inari.svg' | ||
import logoNeumora from './logo-neumora.png' | ||
import logoResilience from './logo-resilience.svg' | ||
import logoTessera from './logo-tessera.png' | ||
|
||
export default [ | ||
{ | ||
src: logoDecibel, | ||
title: 'Decibel Therapeutics', | ||
}, | ||
{ | ||
src: logoNeumora, | ||
title: 'Neumora Therapeutics', | ||
}, | ||
{ | ||
src: logoResilience, | ||
title: 'Resilience', | ||
width: '240px', | ||
}, | ||
{ | ||
src: logoInari, | ||
title: 'Inari', | ||
}, | ||
{ | ||
src: logoHudl, | ||
title: 'hudl', | ||
}, | ||
{ | ||
src: logoTessera, | ||
title: 'Tessera', | ||
}, | ||
{ | ||
src: logoDspconcepts, | ||
title: 'DSP Concepts', | ||
}, | ||
{ | ||
src: logoAllencell, | ||
title: 'Allen Institute for Cell Science', | ||
}, | ||
] |
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
Binary file not shown.
Binary file not shown.
Binary file not shown.
File renamed without changes
Binary file not shown.
Binary file not shown.
Oops, something went wrong.