60 테크스펙에는 두개의 브랜치에 있는 코드가 변경되었습니다. 따라서 두개의 PR을 날렸습니다.
eslint가 잡아낸 경고의 대부분은 "사용되지 않는 import문"을 삭제하지 않고 둔 것이었습니다.
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;
Related Issue
close #60
Changes
Screenshots
To Reviewer
60 테크스펙에는 두개의 브랜치에 있는 코드가 변경되었습니다. 따라서 두개의 PR을 날렸습니다.
Additional Context(optional)
도커에 DB 처음 빌드하면 서버와 DB의 연동이 안될 수 있습니다. application.yml 파일에 datasource mysql url을 test_db로 했기 때문에 test_db 데이터를 새로 생성해줘야합니다.
How Has This Been Tested?
docker-compose -up
Checklist