sgdevcamp2023 / sgwannabe

스마일게이트 개발 캠프 2023 - SG WannaBe
7 stars 1 forks source link

Feat/#60 코드 리팩토링 #67

Closed happysoy closed 9 months ago

happysoy commented 9 months ago

Related Issue

close #60

Changes

Screenshots

To Reviewer

Additional Context(optional)

도커에 DB 처음 빌드하면 서버와 DB의 연동이 안될 수 있습니다. application.yml 파일에 datasource mysql url을 test_db로 했기 때문에 test_db 데이터를 새로 생성해줘야합니다.

create database test_db;

create user 'testuser'@'%' identified by 'testuser123';
flush privileges;
show grants for testuser@'%';
grant all privileges on test_db.* to testuser@'%';
show grants for testuser@'%';

use test_db;
select * from user;

How Has This Been Tested?

docker-compose -up

Checklist

kor-Chipmunk commented 9 months ago

인프라 작업이랑 겹칠 수 있어서 빠른 머지할게요!