-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
34 lines (34 loc) · 943 Bytes
/
.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
# Flyway database migration credentials file
conf/flyway.conf
test/flyway.conf
# environment variables file
.env
!test/.env
# node modules (they'll all be unpacked with npm install anyway)
node_modules/
# EXCEPT keep the Flyway directory because the flywaydb-cli package
# has security vulnerabilities and hasn't been updated, so we're
# just keeping its output.
# And also it won't guarantee which Flyway version you get (you get
# the latest)
!node_modules/flyway/
!node_modules/flyway/*
!node_modules/flyway/**/*
# copy of latest file provenance report
components/fpr/seqware_files_report_latest.tsv.gz
# copy of small versions of file provenance report
components/fpr/backups/*fpr.tsv
components/fpr/fpr-latest.tsv
# sqlite database
components/fpr/fpr.db*
test/fpr.db*
test/migrations/create_fpr_table.sql
# logs
logs/*.log
# any future tokens or other config items
.npmrc
# SQLite3 test db
test/fpr.db
fpr.db
# VS Code settings
.vscode/