-
Notifications
You must be signed in to change notification settings - Fork 48
/
.gitignore
60 lines (44 loc) · 1.09 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
# environment variables
/environment*
# Heroku build
/build/
# auspice build
/auspice-client/index.html
/auspice-client/dist/
# misc #
.DS_Store
/node_modules/
/static-site/node_modules/
/npm-debug.log
# local sessions
/sessions/
# local key-value storage (e.g. when Redis isn't configured)
/data/kv.db
# data caches etc for development purposes
/devData/
# Generated by scripts/collect-datasets.js
/data/datasets_influenza.json
/data/datasets_staging.json
# Generated by scripts/collect-search-results.js
/data/search_sars-cov-2.json
/data/search_seasonal-flu.json
# test logs
/test/server.log
# docs build
/docs/build/
# Terraform working dir settings
.terraform/
# Terraform local state files. These shouldn't exist with our remote state
# store, but in case they do, make sure they aren't committed.
terraform.tfstate*
# Terraform plans, per our suggested usage in docs
/env/*/plan
# nextjs
static-site/next-env.d.ts
static-site/.next
# TypeScript
static-site/tsconfig.tsbuildinfo
# Blog feeds
static-site/public/blog/atom.xml
static-site/public/blog/feed.json
static-site/public/blog/rss2.xml