-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.gitignore
81 lines (71 loc) · 1.2 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#
# This gitignore provides a basic framework of files that should never
# be commited to the repository. The JavaScript and Python ignores are
# very basic, and it will depend on each subdirectory to implement its
# own rules.
#
# IDEs & File System
.DS_Store
Thumbs.db
.idea/
.code/
.vscode/
# Common Environment Files
*.env
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
env_file
.venv
zappa_settings.json
handler_config.json
env/
venv/
ENV/
package/
# Database Hasura YAML or ENV files
moped-database/config.yaml
moped-database/config.yml
moped-database/config/*.yaml
!moped-database/config/hasura.local.yaml
!moped-database/config/hasura.cognito.staging.env
moped-database/hasura.current_environment.yaml
moped-database/docker-compose-*.yaml
moped-database/snapshots/
hasura_cluster.json
hasura_cluster_template.json
# Secrets used in moped toolbox scripts
secrets.py
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Python (basic)
.pytest_cache/
__pycache__/
*.py[cod]
*$py.class
# JavaScript (basic)
node_modules/
jspm_packages/
*.pid
*.seed
*.pid.lock
lib-cov
coverage
.eslintcache
.yarn-integrity
.next
# Binaries
*.exe
*.msi
*.zip
*.rar
*.7z
*.so
*.npm
*.tgz