Skip to content

Commit 09acc38

Browse files
committed
Update
1 parent 3cac1d1 commit 09acc38

File tree

4 files changed

+1570
-0
lines changed

4 files changed

+1570
-0
lines changed

.gitignore

Lines changed: 181 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,181 @@
1+
### Java template
2+
# Compiled class file
3+
*.class
4+
5+
.idea
6+
*.iml
7+
8+
# Log file
9+
*.log
10+
11+
# BlueJ files
12+
*.ctxt
13+
14+
# Mobile Tools for Java (J2ME)
15+
.mtj.tmp/
16+
17+
# Package Files #
18+
*.jar
19+
*.war
20+
*.nar
21+
*.ear
22+
*.zip
23+
*.tar.gz
24+
*.rar
25+
26+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
27+
hs_err_pid*
28+
replay_pid*
29+
30+
### Maven template
31+
target/
32+
pom.xml.tag
33+
pom.xml.releaseBackup
34+
pom.xml.versionsBackup
35+
pom.xml.next
36+
release.properties
37+
dependency-reduced-pom.xml
38+
buildNumber.properties
39+
.mvn/timing.properties
40+
# https://github.com/takari/maven-wrapper#usage-without-binary-jar
41+
.mvn/wrapper/maven-wrapper.jar
42+
43+
# Eclipse m2e generated files
44+
# Eclipse Core
45+
.project
46+
# JDT-specific (Eclipse Java Development Tools)
47+
.classpath
48+
49+
### JetBrains template
50+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
51+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
52+
53+
# User-specific stuff
54+
.idea/**/workspace.xml
55+
.idea/**/tasks.xml
56+
.idea/**/usage.statistics.xml
57+
.idea/**/dictionaries
58+
.idea/**/shelf
59+
60+
# AWS User-specific
61+
.idea/**/aws.xml
62+
63+
# Generated files
64+
.idea/**/contentModel.xml
65+
66+
# Sensitive or high-churn files
67+
.idea/**/dataSources/
68+
.idea/**/dataSources.ids
69+
.idea/**/dataSources.local.xml
70+
.idea/**/sqlDataSources.xml
71+
.idea/**/dynamic.xml
72+
.idea/**/uiDesigner.xml
73+
.idea/**/dbnavigator.xml
74+
75+
# Gradle
76+
.idea/**/gradle.xml
77+
.idea/**/libraries
78+
79+
# Gradle and Maven with auto-import
80+
# When using Gradle or Maven with auto-import, you should exclude module files,
81+
# since they will be recreated, and may cause churn. Uncomment if using
82+
# auto-import.
83+
# .idea/artifacts
84+
# .idea/compiler.xml
85+
# .idea/jarRepositories.xml
86+
# .idea/modules.xml
87+
# .idea/*.iml
88+
# .idea/modules
89+
# *.iml
90+
# *.ipr
91+
92+
# CMake
93+
cmake-build-*/
94+
95+
# Mongo Explorer plugin
96+
.idea/**/mongoSettings.xml
97+
98+
# File-based project format
99+
*.iws
100+
101+
# IntelliJ
102+
out/
103+
104+
# mpeltonen/sbt-idea plugin
105+
.idea_modules/
106+
107+
# JIRA plugin
108+
atlassian-ide-plugin.xml
109+
110+
# Cursive Clojure plugin
111+
.idea/replstate.xml
112+
113+
# SonarLint plugin
114+
.idea/sonarlint/
115+
116+
# Crashlytics plugin (for Android Studio and IntelliJ)
117+
com_crashlytics_export_strings.xml
118+
crashlytics.properties
119+
crashlytics-build.properties
120+
fabric.properties
121+
122+
# Editor-based Rest Client
123+
.idea/httpRequests
124+
125+
# Android studio 3.1+ serialized cache file
126+
.idea/caches/build_file_checksums.ser
127+
128+
### Windows template
129+
# Windows thumbnail cache files
130+
Thumbs.db
131+
Thumbs.db:encryptable
132+
ehthumbs.db
133+
ehthumbs_vista.db
134+
135+
# Dump file
136+
*.stackdump
137+
138+
# Folder config file
139+
[Dd]esktop.ini
140+
141+
# Recycle Bin used on file shares
142+
$RECYCLE.BIN/
143+
144+
# Windows Installer files
145+
*.cab
146+
*.msi
147+
*.msix
148+
*.msm
149+
*.msp
150+
151+
# Windows shortcuts
152+
*.lnk
153+
154+
### macOS template
155+
# General
156+
.DS_Store
157+
.AppleDouble
158+
.LSOverride
159+
160+
# Icon must end with two \r
161+
Icon
162+
163+
# Thumbnails
164+
._*
165+
166+
# Files that might appear in the root of a volume
167+
.DocumentRevisions-V100
168+
.fseventsd
169+
.Spotlight-V100
170+
.TemporaryItems
171+
.Trashes
172+
.VolumeIcon.icns
173+
.com.apple.timemachine.donotpresent
174+
175+
# Directories potentially created on remote AFP share
176+
.AppleDB
177+
.AppleDesktop
178+
Network Trash Folder
179+
Temporary Items
180+
.apdisk
181+

dump-hibernate-final.sql

Lines changed: 130 additions & 0 deletions
Large diffs are not rendered by default.

run-postres-container.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
docker run --name PG-TEST-PARSE \
2+
-p 5432:5432 \
3+
-e POSTGRES_PASSWORD=root \
4+
-e POSTGRES_USER=root \
5+
-e POSTGRES_DB=testdb \
6+
-d postgres:latest

0 commit comments

Comments
 (0)