From 14d7c351c94ba443374111a633e111321bc9bd48 Mon Sep 17 00:00:00 2001 From: rushilwiz Date: Wed, 18 Mar 2020 15:13:41 -0400 Subject: [PATCH] added gitignore --- .gitignore | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9f637e9 --- /dev/null +++ b/.gitignore @@ -0,0 +1,48 @@ +# Python-specific ignores +.eggs +*.pyc +__pycache__ +__pycache__/* + +# Build stuff ignores +build +.coverage +dist/*.tar.gz + +# General ignores +*.crt +*.dbg +dump.rdb +*.DS_Store +.DS_STORE +*.key +*.log +*.swp + +# Development-specific ignores +devconfig.json +.vagrant + +# Text editors ignores +.idea/ +*.sublime-project +*.sublime-workspace + +# mypy-related ignores +.mypy_cache + +# Ion-specific ignores +intranet/apps/files/cred.py* +intranet/collected_static +maintenance_mode_state.txt +uploads/* + +# Fixture-related ignores +fixtures/**/*.json +fixtures/README.txt +fixtures/*.sql +*fixtures*.tar* + +# NPM-related ignores +node_modules/ +package-lock.json