From 6e76d90bf135d83ab21639b74d74b8af3134d7a5 Mon Sep 17 00:00:00 2001 From: Richard Ramos Date: Fri, 29 Jun 2018 13:10:40 -0400 Subject: [PATCH] Added .gitignore --- .gitignore | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4c0fd01 --- /dev/null +++ b/.gitignore @@ -0,0 +1,43 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# embark +.embark/ +chains.json +config/production/password +config/livenet/password + +# egg-related +viper.egg-info/ +build/ +dist/ +.eggs/ + +# pyenv +.python-version + +# dotenv +.env + +# virtualenv +.venv/ +venv/ +ENV/ + +# Coverage tests +.coverage +.cache/ +coverage/ +coverageEnv/ +coverage.json + +# node +node_modules/ +npm-debug.log +package-lock.json + +# other +.vs/ +bin/ \ No newline at end of file