co323co / stove_auth

0 stars 0 forks source link

스마일게이트 STOVE_DEV_CAMP 개인 과제

목차


⚒ 개발 도구

🖥 기능 설명

TODO


🔧 프로젝트 명세

️ 배포 방법

환경

추가 설정 및 파일

  1. application.yml, appication_test.yml

    1. /backend/src/main/resources 으로 이동합니다.
    2. 아래와 같은 내용으로 resources 안에 application.yml와 application_test.yml를 생성합니다.
    spring:
     datasource:
       hikari:
         platform: mysql
         driver-class-name: com.mysql.cj.jdbc.Driver
         jdbc-url: {{ your database url }}
         username: {{ your database username }}
         password: {{ your database password }}
     jpa:
       properties:
         hibernate:
           show_sql: true
           format_sql: true
           use_sql_comments: true
           hbm2ddl.auto: update
     mail:
       host: smtp.gmail.com
       port: 587
       username: {{ your email }}
       password: {{ your email password }}
       properties:
         mail:
           smtp:
             auth: true
             starttls:
               enable: true
    custom:
     constant:
       token:
         secret:
           key: {{ your secret key }}
       user:
         info:
           password:
             key: {{ your password key }}

🎞 산출물

API 명세서


DB ERD

img

동작 화면

image

로그인 페이지

image

회원가입 페이지

image

관리자 페이지

image


프로젝트 후기