-
Notifications
You must be signed in to change notification settings - Fork 306
/
.gitignore
58 lines (43 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# *
# * This Source Code Form is subject to the terms of the Mozilla Public
# * License, v. 2.0. If a copy of the MPL was not distributed with this
# * file, You can obtain one at http://mozilla.org/MPL/2.0/.
# *
# NPM
node_modules
npm*.log
v8-compile-cache*
# Intellij (directory-based)
.idea
*.iml
# Private
private
# Build files
/src/client/public/app/*
# Environment Variables
.env
# CSV files (except ones needed for database tests)
*.csv
!/src/server/test/**/*.csv
!/src/server/data/unit/*.csv
# CSV gz files (except ones needed for database tests)
*.csv.gz
!/src/server/test/**/*.csv.gz
!/src/server/data/unit/*.csv.gz
# Database
postgres-data
# Text files
*.txt
!LICENSE.txt
# Test data (normally for developers)
src/server/test/db/data/automatedTests/*.csv
# Server tmp directory
src/server/tmp
# nohup.out is created when working inside the remote container with Visual Studio Code.
nohup.out
# Mac Finder files - do here so avoid in VSC container
.DS_Store
# Visual Studio Code settings file
.vscode/settings.json
# tmp file
src/server/tmp/*