From d1b49f1eb2094a2bf3bd2899049883d1c90bed61 Mon Sep 17 00:00:00 2001 From: Piyush Bhatt <2023kuec2027@iiitkota.ac.in> Date: Fri, 17 Jan 2025 19:13:14 +0530 Subject: [PATCH] remove Procfile/app.json file --- Procfile | 1 - app.json | 22 ---------------------- 2 files changed, 23 deletions(-) delete mode 100644 Procfile delete mode 100644 app.json diff --git a/Procfile b/Procfile deleted file mode 100644 index 9fc5d2c236f..00000000000 --- a/Procfile +++ /dev/null @@ -1 +0,0 @@ -web: ls dist.backup || cp -a dist/ dist.backup; rm -rf dist; cp -a dist.backup dist; for f in $(find dist/ -type f); do sed -i "s|replace_me_env_cbioportal_url|${CBIOPORTAL_URL:-https://www.cbioportal.org}|g" $f; sed -i "s|replace_me_env_genome_nexus_url|${GENOME_NEXUS_URL:-https://www.genomenexus.org}|g" $f; done && pushstate-server dist ${PORT} diff --git a/app.json b/app.json deleted file mode 100644 index 3b7d67c6ad6..00000000000 --- a/app.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "name": "cbioportal-frontend", - "description": "React Frontend of cBioPortal", - "repository": "https://github.com/cbioportal/cbioportal-frontend", - "logo": "http://www.cbioportal.org/images/cbioportal_logo.png", - "keywords": ["react", "redux", "cancer", "genomics"], - "buildpacks": [ - { - "url": "https://github.com/heroku/heroku-buildpack-nodejs#v134" - } - ], - "env": { - "CBIOPORTAL_URL": { - "description":"Set backend url to e.g. www.cbioportal.org", - "required": false - }, - "GENOME_NEXUS_URL": { - "description":"Set genome nexus url to e.g. www.genomenexus.org", - "required": false - } - } -}