-
Notifications
You must be signed in to change notification settings - Fork 3
/
.gitignore
48 lines (41 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
refactor/*
# Exclude PSQL data
config
data
data/*
!data/.keep
data.bak/*
# Exclude PSQL data from single example
examples/single/data/*
!examples/single/data/.keep
# Exclude PSQL data from master example
examples/master/data/*
!examples/master/data/.keep
# Exclude PSQL data from backup example
examples/backup/data/*
!examples/backup/data/.keep
# Exclude PSQL data from snapshot example
examples/snapshot/data/*
!examples/snapshot/data/.keep
# Exclude PSQL data from master-standby example
examples/master-standby/master/*
examples/master-standby/standby-1/*
examples/master-standby/standby-2/*
!examples/master-standby/master/.keep
!examples/master-standby/standby-1/.keep
!examples/master-standby/standby-2/.keep
# Exclude PSQL data from repmgr example
examples/repmgr/psql-1/*
examples/repmgr/psql-2/*
examples/repmgr/psql-3/*
examples/repmgr/psql-4/*
!examples/repmgr/psql-1/.keep
!examples/repmgr/psql-2/.keep
!examples/repmgr/psql-3/.keep
!examples/repmgr/psql-4/.keep
# Global Project settings
.vscode/*.log
examples/.env
tmp/
test.conf
.DS_Store