/ .gitignore
.gitignore
 1  # Byte-compiled / optimized / DLL files
 2  __pycache__/
 3  *.py[cod]
 4  *$py.class
 5  
 6  # embark
 7  .embark/
 8  chains.json
 9  config/production/password
10  config/livenet/password
11  
12  # egg-related
13  viper.egg-info/
14  build/
15  dist/
16  .eggs/
17  
18  # pyenv
19  .python-version
20  
21  # dotenv
22  .env
23  
24  # virtualenv
25  .venv/
26  venv/
27  ENV/
28  
29  # Coverage tests
30  .coverage
31  .cache/
32  coverage/
33  coverageEnv/
34  coverage.json
35  
36  # node
37  node_modules/
38  npm-debug.log
39  package-lock.json
40  
41  # other
42  .vs/
43  bin/