mirror of
https://github.com/chanzuckerberg/cellxgene.git
synced 2026-09-16 05:07:55 +08:00
There was a syntax error in our app.json that was leading to the inability to use the "deploy-to-heroku" button.
30 lines
665 B
JSON
30 lines
665 B
JSON
{
|
|
"name": "cellxgene",
|
|
"description": "An interactive explorer for single-cell transcriptomics data",
|
|
"repository": "https://github.com/chanzuckerberg/cellxgene",
|
|
"logo": "https://cellxgene-example-data.czi.technology/favicon.png",
|
|
"keywords": [
|
|
"scientific",
|
|
"visualization",
|
|
"scrna-seq",
|
|
"transcriptomics",
|
|
"dataviz"
|
|
],
|
|
"buildpacks": [
|
|
{
|
|
"url": "heroku/nodejs"
|
|
},
|
|
{
|
|
"url": "heroku/python"
|
|
}
|
|
],
|
|
"stack": "heroku-18",
|
|
"env": {
|
|
"DATASET": {
|
|
"description": "Link to dataset",
|
|
"value": "https://cellxgene-example-data.czi.technology/pbmc3k.h5ad",
|
|
"required": "true"
|
|
}
|
|
}
|
|
}
|