Skip to content

Commit

Permalink
๐Ÿ”€ :: (ENTRY-70) ์ผ์ • ํ”„๋กœ์ ํŠธ ์„ธํŒ…
Browse files Browse the repository at this point in the history
๐Ÿ”€ :: (ENTRY-70) ์ผ์ • ํ”„๋กœ์ ํŠธ ์„ธํŒ…
  • Loading branch information
lilseongwon authored Sep 27, 2023
2 parents e08da58 + 9acf265 commit 6360334
Show file tree
Hide file tree
Showing 37 changed files with 55 additions and 2 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: ktlint

on:
push:
branches:
- "*"
pull_request:
branches:
- main

jobs:
ktlint:
name: Check Code Quality
runs-on: ubuntu-latest

steps:
- name: Clone repo
uses: actions/checkout@v2
with:
fetch-depth: 1

- name: Setup JDK
uses: actions/setup-java@v2
with:
java-version: '17'
distribution: 'adopt'

- name: Run ktlint
run: |
./gradlew ktlintCheck --daemon --parallel --configure-on-demand
Binary file modified .gradle/8.2.1/checksums/checksums.lock
Binary file not shown.
Binary file added .gradle/8.2.1/checksums/md5-checksums.bin
Binary file not shown.
Binary file added .gradle/8.2.1/checksums/sha1-checksums.bin
Binary file not shown.
Binary file not shown.
Binary file modified .gradle/8.2.1/executionHistory/executionHistory.lock
Binary file not shown.
Binary file modified .gradle/8.2.1/fileHashes/fileHashes.bin
Binary file not shown.
Binary file modified .gradle/8.2.1/fileHashes/fileHashes.lock
Binary file not shown.
Binary file modified .gradle/buildOutputCleanup/buildOutputCleanup.lock
Binary file not shown.
Binary file modified .gradle/buildOutputCleanup/outputFiles.bin
Binary file not shown.
Binary file modified .gradle/file-system.probe
Binary file not shown.
Binary file added build/intermediates/ktLint/reporterProviders.bin
Binary file not shown.
Binary file added build/intermediates/ktLint/reporters.bin
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.
Empty file.
Empty file.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/Users/kimseongwon/Desktop/gitHub/Equus-Schedule/src/test/kotlin/hs/kr/equus/schedule/EquusScheduleApplicationTests.kt:12:1: Unexpected blank line(s) before "}" (no-blank-line-before-rbrace)
Empty file.
Binary file modified buildSrc/.gradle/8.2.1/executionHistory/executionHistory.lock
Binary file not shown.
Binary file modified buildSrc/.gradle/buildOutputCleanup/buildOutputCleanup.lock
Binary file not shown.
Binary file modified buildSrc/.gradle/file-system.probe
Binary file not shown.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
1 change: 0 additions & 1 deletion src/main/resources/application.properties

This file was deleted.

24 changes: 24 additions & 0 deletions src/main/resources/application.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
spring:
datasource:
driver-class-name: com.mysql.cj.jdbc.Driver
url: ${MYSQL_URL}
username: ${MYSQL_USERNAME}
password: ${MYSQL_PASSWORD}
hikari:
maxLifetime: 580000

jpa:
hibernate:
ddl-auto: update
show-sql: ${SHOW_SQL:true}
properties:
hibernate:
format_sql: ${FORMAT_SQL:true}
open-in-view: false
database: mysql

auth:
jwt:
secretKey: ${JWT_SECRET_KEY:dGVzdA==}
header: ${JWT_HEADER:Authorization}
prefix: ${JWT_PREFIX:Bearer}
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,4 @@ class EquusScheduleApplicationTests {
@Test
fun contextLoads() {
}

}

0 comments on commit 6360334

Please sign in to comment.