/ .gitignore
.gitignore
 1  # secrets / local env
 2  .env
 3  *.env
 4  secrets/
 5  **/*.key
 6  **/*.pem
 7  **/*.pfx
 8  
 9  # python
10  __pycache__/
11  .venv/
12  .venv*/
13  *.pyc
14  
15  # node
16  node_modules/
17  npm-debug.log*
18  yarn-debug.log*
19  yarn-error.log*
20  
21  # build outputs
22  dist/
23  build/
24  .next/
25  .streamlit/
26  
27  # os/editor
28  .DS_Store
29  .vscode/
30  .idea/