From 463cdef08b50f7b139a8c3decfbc3a1c57043095 Mon Sep 17 00:00:00 2001 From: Charlotte Weaver Date: Mon, 13 Aug 2018 14:35:41 -0700 Subject: [PATCH] Cleanup .gitignore remove lines related to old separate repo version add ignore for virtual environments and jupyter notebooks (I use them to test) --- .gitignore | 59 +++++++++++++++++++++--------------------------------- 1 file changed, 23 insertions(+), 36 deletions(-) diff --git a/.gitignore b/.gitignore index 755f2a8b..ef309063 100644 --- a/.gitignore +++ b/.gitignore @@ -1,52 +1,39 @@ # dependencies -node_modules +node_modules/ # coverage coverage .nyc_output +.pytest_cache/ + # production -build +build/ +dist/ +*.egg-info -# misc -.DS_Store -npm-debug.log -.vscode - -data - - -*.idea* - -__pycache__ -*.DS_Store* - -# Elastic Beanstalk Files -.elasticbeanstalk/* -!.elasticbeanstalk/*.cfg.yml -!.elasticbeanstalk/*.global.yml - -GBM -venv -extesting - -Dockerfile-* -*-data/* -data/* -runServer.py -templates/favicon.png -templates/index.html -templates/service-worker.js -templates/static/* -Graph.dot* +# Environments +venv/ +cellxgene/ +# client build server/app/web/static/css/ server/app/web/static/img/ server/app/web/static/js/ server/app/web/templates/index\.html +# Jupyter Notebook +.ipynb_checkpoints +*.ipynb + +# misc +.DS_Store +npm-debug.log +.vscode +*.idea* +__pycache__ +*.DS_Store* + + -*.egg-info -dist/* -build/*