-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gitignore
38 lines (28 loc) · 1.04 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
# Ignore Terraform lock files
# As of Feb 2023, Terraform lock files, while well intentioned, have a tendency
# to get into a confusing state that requires recreating the lock file, which
# defeats the purpose. Moreover, lock files are per environment, which can make
# it difficult for people to upgrade dependencies (e.g. upgrade an AWS provider)
# across environments if certain environments are locked down (e.g. production).
.terraform.lock.hcl
# MacOS files
.DS_Store
# Ignore develop-specific VS code settings files
.vscode
# Ignore local environment variables which can contain environment secrets
.env
.envrc
# Python testing stuff
*__pycache__*
# Override that enables app/.env to be read for local development
docker-compose.override.yml
# Temporary files created in the container by batch processing
.files*
# Evaluation result logfiles and local data
app/src/evaluation/metrics/logs/
app/src/evaluation/metrics/data/
app/src/evaluation/data/
# Local development files
app/Makefile.local
# Local refresh-ingestion-created scripts
/refresh-*.sh