Skip to content

🀝 κ΄‘μš΄λŒ€ν•™κ΅ μ˜€ν”ˆμ†ŒμŠ€μ†Œν”„νŠΈμ›¨μ–΄κ°œλ°œ ν”„λ‘œμ νŠΈ - λŒ€ν•™μƒ μ†Œκ°œνŒ… μ„œλΉ„μŠ€

License

Notifications You must be signed in to change notification settings

SiwonHae/DASOM_BE

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

57 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

🀝 λŒ€ν•™μƒ μ†Œκ°œνŒ… μ„œλΉ„μŠ€, λ‹€μ†œ! - BackEnd

πŸ™‹β€β™‚οΈ 우리 ν”„λ‘œμ νŠΈλ₯Ό μ†Œκ°œν•©λ‹ˆλ‹€!

 우리의 ν”„λ‘œμ νŠΈ 'λ‹€μ†œ'은 λŒ€ν•™μƒλ“€μ„ λŒ€μƒμœΌλ‘œ μ›ν•˜λŠ” μ‚¬λžŒμ„ μ‰½κ²Œ λ§Œλ‚  수 μžˆλ„λ‘ μ†Œκ°œνŒ… μ„œλΉ„μŠ€λ₯Ό μ œκ³΅ν•˜λŠ” μ›Ή ν”„λ‘œμ νŠΈμž…λ‹ˆλ‹€. ν”„λ‘œμ νŠΈ λͺ…인 'λ‹€μ†œ'은 μ‚¬λž‘μ„ λœ»ν•˜λŠ” 순 μš°λ¦¬λ§μ—μ„œ λΉ„λ‘―λ˜μ—ˆμŠ΅λ‹ˆλ‹€.
Β μ„€λ ˆλŠ” 마음으둜 λŒ€ν•™κ΅μ— 였게 된 μ‹ μž…μƒ, νœ΄ν•™μ΄λ‚˜ ν•™μ—… λ“±μ˜ 이유둜 학ꡐ에 μΉœν•œ μΉœκ΅¬κ°€ μ—†λŠ” 학생듀 μ€‘μ—μ„œ μƒˆλ‘œμš΄ μ‚¬λžŒμ„ λ§Œλ‚  κΈ°νšŒκ°€ μ—†κ±°λ‚˜, 내성적인 μ„±κ²©μœΌλ‘œ 친ꡬλ₯Ό μ‰½κ²Œ λ§Œλ“€μ§€ λͺ»ν•˜λŠ” 학생듀이 μžˆμŠ΅λ‹ˆλ‹€. 우리의 ν”„λ‘œμ νŠΈ λ‹€μ†œμ€ μ΄λŸ¬ν•œ 학생듀을 λŒ€μƒμœΌλ‘œ μ‰½κ²Œ λ§Œλ‚¨μ„ ν•  수 μžˆλ„λ‘ 도움을 μ£ΌκΈ° μœ„ν•΄μ„œ 이 ν”„λ‘œμ νŠΈλ₯Ό κΈ°νšν•˜κ²Œ λ˜μ—ˆμŠ΅λ‹ˆλ‹€.

FrontEnd Repository : https://github.com/GHYoungKyun/DASOM_FE

πŸ’» ν”„λ‘œμ νŠΈ μ„€μΉ˜

  • JDK 17이상이 μ„€μΉ˜λ˜μ–΄ μžˆμ–΄μ•Ό ν•©λ‹ˆλ‹€.
  • λŒ€ν•™μƒ 메일 인증을 μœ„ν•΄μ„œ μ˜€ν”ˆμ†ŒμŠ€ UnivCertλ₯Ό μ‚¬μš©ν•˜μ˜€μŠ΅λ‹ˆλ‹€.

1. Git Clone

$ git clone https://github.com/SiwonHae/DASOM_BE.git

2. 카카였, 넀이버 μ†Œμ…œ 둜그인 μ„€μ •, UnivCert API ν‚€ λ°œκΈ‰

3. src/main/resources/application.yml μ„€μ •

spring:  
  datasource:  
    driver-class-name: org.mariadb.jdbc.Driver  
    url: jdbc:mariadb://{DB μ£Όμ†Œ}/{DBλͺ…}  
    username: {DB Username}  
    password: {DB Password}  
  
  jpa:  
    hibernate:  
      ddl-auto: create // 배포 μ‹œμ—λŠ” update μ„€μ •  
    properties:  
      hibernate:  
        format_sql: true  
        show_sql: true  
  
oauth:  
  kakao:  
    client-id: {KaKao Client Id}
    client-secret: {KaKao Cient Secret}  
    redirect-uri: {KaKao Redirect URL}  
    scope:  
      - name  
      - account_email  
      - gender  
      - birthday  
      - birthyear  
  
  naver:  
    client-id: {Naver Client Id}  
    client-secret: {Naver Client Secret}  
    redirect-uri: {Naver Redirect URL}  
    scope:  
      - name  
      - email  
      - birthyear  
      - birthday  
      - gender  
  
logging:  
  level:  
    org.hibernate:  
      type.descriptor.sql:  
  SQL: DEBUG  
  
myapp:  
  api_key: {UnivCert API Key}

4. ν”„λ‘œμ νŠΈ λΉŒλ“œ 및 μ‹€ν–‰

$ ./gradlew build  
$ java -jar build/libs/{ν”„λ‘œμ νŠΈλͺ…-버전}.jar

πŸͺͺ λΌμ΄μ„ μŠ€

Β This work is licensed under the MIT license.
 이 μž‘μ—…λ¬Όμ€ MIT λΌμ΄μ„ μŠ€μ— 따라 λΌμ΄μ„ μŠ€κ°€ λΆ€μ—¬λ˜μ–΄ μžˆμŠ΅λ‹ˆλ‹€.

πŸ§‘β€πŸ’» ν”„λ‘œμ νŠΈ 멀버

BackEnd BackEnd FrontEnd FrontEnd
μž„μ£Όν˜ 이아린 κΉ€μ˜κ·  κΆŒλ²”μ€€

About

🀝 κ΄‘μš΄λŒ€ν•™κ΅ μ˜€ν”ˆμ†ŒμŠ€μ†Œν”„νŠΈμ›¨μ–΄κ°œλ°œ ν”„λ‘œμ νŠΈ - λŒ€ν•™μƒ μ†Œκ°œνŒ… μ„œλΉ„μŠ€

Resources

License

Stars

Watchers

Forks

Languages