Skip to content

Commit

Permalink
added build
Browse files Browse the repository at this point in the history
  • Loading branch information
jwoolbright23 committed Jun 18, 2024
1 parent 46d011e commit b3191e7
Show file tree
Hide file tree
Showing 37 changed files with 7,310 additions and 3 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
HELP.md
.gradle
build/
!gradle/wrapper/gradle-wrapper.jar
!**/src/main/**/build/
!**/src/test/**/build/
Expand Down
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/TechJobsPersistent-0.0.1-SNAPSHOT.jar
Binary file not shown.
1 change: 1 addition & 0 deletions build/resolvedMainClassName
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
org.launchcode.techjobs.persistent.TechJobsPersistentApplication
18 changes: 18 additions & 0 deletions build/resources/main/application.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Database connection settings
spring.datasource.url=jdbc:sqlserver://sqlserver.launchcodelearning.org:1433;databaseName=techjobs;encrypt=true;trustServerCertificate=true;loginTimeout=30;
spring.datasource.username=techjobs
spring.datasource.password=techjobsDemoApp

# Specify the DBMS
spring.jpa.open-in-view=false

# Show or not log for each SQL query
spring.jpa.show-sql=false

# Hibernate ddl auto (create, create-drop, update)
spring.jpa.hibernate.ddl-auto=update

# Use spring.jpa.properties.* for Hibernate native properties (the prefix is
# stripped before adding them to the entity manager)
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.SQLServerDialect

Loading

0 comments on commit b3191e7

Please sign in to comment.