Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#9 매칭구현_entity설계 #10

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
MYSQL=mysql
HOST=localhost
PORT=3306
DATABASE=nomad
MYSQL_USERNAME=root
MYSQL_PASSWORD=root
Binary file added .gradle/8.10.1/checksums/checksums.lock
Binary file not shown.
Binary file added .gradle/8.10.1/checksums/md5-checksums.bin
Binary file not shown.
Binary file added .gradle/8.10.1/checksums/sha1-checksums.bin
Binary file not shown.
Empty file.
Binary file not shown.
Binary file not shown.
Binary file added .gradle/8.10.1/fileChanges/last-build.bin
Binary file not shown.
Binary file added .gradle/8.10.1/fileHashes/fileHashes.bin
Binary file not shown.
Binary file added .gradle/8.10.1/fileHashes/fileHashes.lock
Binary file not shown.
Binary file added .gradle/8.10.1/fileHashes/resourceHashesCache.bin
Binary file not shown.
Empty file added .gradle/8.10.1/gc.properties
Empty file.
Binary file added .gradle/buildOutputCleanup/buildOutputCleanup.lock
Binary file not shown.
2 changes: 2 additions & 0 deletions .gradle/buildOutputCleanup/cache.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#Sat Sep 14 21:55:03 KST 2024
gradle.version=8.10.1
Binary file added .gradle/buildOutputCleanup/outputFiles.bin
Binary file not shown.
Binary file added .gradle/file-system.probe
Binary file not shown.
Empty file added .gradle/vcs-1/gc.properties
Empty file.
8 changes: 8 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .idea/.name

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions .idea/Hyunsolution_BE.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions .idea/NomadNest_BE.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 16 additions & 0 deletions .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions .idea/dataSources.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 18 additions & 0 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 20 additions & 0 deletions .idea/jarRepositories.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

124 changes: 124 additions & 0 deletions .idea/uiDesigner.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions build/bootJarMainClassName
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
com.example.demo.DemoApplication
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added build/libs/demo-0.0.1-SNAPSHOT-plain.jar
Binary file not shown.
Binary file added build/libs/demo-0.0.1-SNAPSHOT.jar
Binary file not shown.
25 changes: 25 additions & 0 deletions build/resources/main/application.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
spring:
application:
name:
demo
config:
import: optional:file:.env[.properties]
datasource:
url: jdbc:${MYSQL:mysql}://${HOST:localhost}:${PORT:3306}/${DATABASE}
username: ${MYSQL_USERNAME}
password: ${MYSQL_PASSWORD}
driver-class-name: com.mysql.cj.jdbc.Driver
h2:
console:
enabled: true
jpa:
hibernate:
ddl-auto: update # ?? ????? create, production ????? update ?? validate? ??
show-sql: true
properties:
hibernate:
format_sql: true
dialect: org.hibernate.dialect.MySQLDialect
defer-datasource-initialization: true


9 changes: 9 additions & 0 deletions build/tmp/bootJar/MANIFEST.MF
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
Manifest-Version: 1.0
Main-Class: org.springframework.boot.loader.JarLauncher
Start-Class: com.example.demo.DemoApplication
Spring-Boot-Version: 2.7.9
Spring-Boot-Classes: BOOT-INF/classes/
Spring-Boot-Lib: BOOT-INF/lib/
Spring-Boot-Classpath-Index: BOOT-INF/classpath.idx
Spring-Boot-Layers-Index: BOOT-INF/layers.idx

Binary file not shown.
2 changes: 2 additions & 0 deletions build/tmp/jar/MANIFEST.MF
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Manifest-Version: 1.0

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
25 changes: 25 additions & 0 deletions out/production/resources/application.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
spring:
application:
name:
demo
config:
import: optional:file:.env[.properties]
datasource:
url: jdbc:${MYSQL:mysql}://${HOST:localhost}:${PORT:3306}/${DATABASE}
username: ${MYSQL_USERNAME}
password: ${MYSQL_PASSWORD}
driver-class-name: com.mysql.cj.jdbc.Driver
h2:
console:
enabled: true
jpa:
hibernate:
ddl-auto: update # ?? ????? create, production ????? update ?? validate? ??
show-sql: true
properties:
hibernate:
format_sql: true
dialect: org.hibernate.dialect.MySQLDialect
defer-datasource-initialization: true


Loading