-
Notifications
You must be signed in to change notification settings - Fork 35
/
.gitignore
142 lines (120 loc) · 3.44 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
# direnv
.envrc.local
.envrc.chamber
.envrc.okta
# dependencies
/vendor
/node_modules
/.vendor-new
# testing
/coverage
coverage.out
__snapshots__
# production
/build
# development
/mnt
/tmp
/log
# Ignore all compiled binary directories found anywhere in the project
bin/
# Ignore
/docs/packages.txt
#debugging
/cmd/milmove/debug
/cmd/webserver/debug
__debug_bin*
# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local
.idea
.vscode
*.swp
*.sublime-*
.eslintcache
# In case somebody accidentally runs npm install instead of using yarn
package-lock.json
npm-debug.log*
yarn-debug.log*
yarn-error.log*
schema.sql
*.stamp
public/static/react-file-viewer/*
!public/static/react-file-viewer/.gitkeep
public/swagger-ui/*
!public/swagger-ui/api.html
!public/swagger-ui/internal.html
!public/swagger-ui/admin.html
!public/swagger-ui/prime.html
!public/swagger-ui/prime_v2.html
!public/swagger-ui/prime_v3.html
!public/swagger-ui/ghc.html
!public/swagger-ui/support.html
!public/swagger-ui/pptas.html
# Playwright integration tests
playwright/.cache
playwright/html-report
playwright/results
playwright-report
playwright-results.xml
# Spreadsheets that might accidentally include sensitive pricing data
*.xls*
*.csv
*.numbers
*.ods
!pkg/parser/pricing/fixtures/10_3a_oconus_to_oconus_prices_golden.csv
!pkg/parser/pricing/fixtures/11_3b_conus_to_oconus_prices_golden.csv
!pkg/parser/pricing/fixtures/12_3c_oconus_to_conus_prices_golden.csv
!pkg/parser/pricing/fixtures/13_3d_other_intl_prices_golden.csv
!pkg/parser/pricing/fixtures/14_3e_non_standard_locn_prices_golden.csv
!pkg/parser/pricing/fixtures/16_4a_mgmt_coun_trans_prices_counsel_golden.csv
!pkg/parser/pricing/fixtures/16_4a_mgmt_coun_trans_prices_management_golden.csv
!pkg/parser/pricing/fixtures/16_4a_mgmt_coun_trans_prices_transition_golden.csv
!pkg/parser/pricing/fixtures/17_5a_access_and_add_prices_additional_golden.csv
!pkg/parser/pricing/fixtures/17_5a_access_and_add_prices_domestic_golden.csv
!pkg/parser/pricing/fixtures/17_5a_access_and_add_prices_international_golden.csv
!pkg/parser/pricing/fixtures/18_5b_price_escalation_discount_golden.csv
!pkg/parser/pricing/fixtures/4_1b_service_areas_domestic_golden.csv
!pkg/parser/pricing/fixtures/4_1b_service_areas_international_golden.csv
!pkg/parser/pricing/fixtures/6_2a_domestic_linehaul_prices_golden.csv
!pkg/parser/pricing/fixtures/7_2b_domestic_service_area_prices_golden.csv
!pkg/parser/pricing/fixtures/8_2c_domestic_other_prices_pack_golden.csv
!pkg/parser/pricing/fixtures/8_2c_domestic_other_prices_sit_golden.csv
!pkg/parser/pricing/fixtures/pricing_template_2019-09-19_fake-data.xlsx
!pkg/parser/transittime/fixtures/Appendix_C(i)_-_Transit_Time_Tables_Fake_Data.xlsx
!pkg/testdatagen/testdata/Weight Estimator Full.xlsx
!pkg/testdatagen/testdata/Weight Estimator.xlsx
!pkg/testdatagen/testdata/Weight Estimator.xls
!pkg/testdatagen/testdata/test.xls
!playwright/fixtures/constructedWeight.xlsx
!playwright/fixtures/constructedWeight.xls
!src/components/DocumentViewer/sample.xls
# SQLEditor
*.sqs
# Ignore static storybook content
storybook-static
# Anti-Virus
*.fp
*.sfp
*.ign
*.ign2
# Certs
*.srl
# nix
.nix-hash
.nix-disable
.npmglobal
.gopath
# fresh-brew
# The first two files are meant to be updated in the trussworks/fresh-brew repo
# The lock files can be helpful to troubleshoot homebrew issues. They will
# represent the last known good state.
Brewfile
pour.sh
Brewfile.local.lock.json
Brewfile.lock.json
/junit.xml
.envrc.okta