From 3f0bb2ce1d113788ac9b342a00c7acea6782b102 Mon Sep 17 00:00:00 2001 From: Charlotte Weaver Date: Wed, 8 Aug 2018 15:10:33 -0700 Subject: [PATCH] Added clean script for cellxgene --- bin/clean | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 bin/clean diff --git a/bin/clean b/bin/clean new file mode 100755 index 00000000..2765d394 --- /dev/null +++ b/bin/clean @@ -0,0 +1,16 @@ +DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )" +CELLXGENE_DIR=$(dirname $DIR) + +echo "Uninstalling cellxgene" +yes | pip uninstall cellxgene +echo "removing node_modules" +rm -rf $CELLXGENE_DIR/client/node_modules +echo "removing client_build" +rm -rf $CELLXGENE_DIR/client/build +echo "removing egg-info" +rm -rf $CELLXGENE_DIR/cellxgene.egg-info +echo "removing static files" +rm $CELLXGENE_DIR/server/app/web/templates/index.html +rm -rf $CELLXGENE_DIR/server/app/web/static +echo "cellxgene cleanup complete" +