본문 바로가기

전체 글140

[MySQL/AWS] MySQL 데이터베이스 엔진을 실행하는 RDS DB 인스턴스에 연결하기 1. MySQL command-line client 에서 연결 1-1) MySQL RDS DB 인스턴스의 데이터베이스에 연결하기 PROMPT> mysql -h -P -u -p 1-2) 위 명령어를 입력하면 Enter password: 가 뜸. 비밀번호 입력 1-3) 데이터베이스 리스트 보기 show databases; 1-4) chloe 데이터베이스 사용하기 use chloe 1-5) 테이블 리스트 보기 show tables; 2. MySQL Workbench에서 연결 2-1) Database > Manage Connections 클릭 2-2) Manage Server Connections 창에서 New 클릭 2-3) Connect to Database 창에서 다음 정보 입력 Connection Name.. 2022. 8. 30.
[Spring] STO-sale-purchase 프로젝트 환경설정 프로젝트 생성 Backend https://start.spring.io/ GENERATE build.gradle open (intellij) STO-sale-purchase/back-sto-sale-purchase/src/main/java/com/sto/salepurchase/backstosalepurchase/BackStoSalePurchaseApplication.java main method 실행 localhost:8080 접속 Frontend npx create-react-app front-sto-sale-purchase cd front-sto-sale-purchase npm start 2022. 8. 29.
[MacOS - M1] m1 맥북에 brew 통해 vscode 설치하기 visual studio code 설치 brew install visual-studio-code --cask 최신 homebrew에는 cask가 기본으로 되어 있어서 --cask 명령어는 생략해도 된다고 한다. 설치 완료 참고 : https://minimal-dev.tistory.com/38 2022. 8. 29.
[MacOS - M1] m1 맥북에 brew 통해 iterm2 , oh-my-zsh 설치하기 iterm2 설치 https://formulae.brew.sh/cask/iterm2#default 아래 설치 명령어 복사하기 brew install --cask iterm2 command + space 로 Spotlight 실행 후 터미널 실행 터미널에 위에서 복사한 명령어 입력하기 설치 완료 spotlight에서 iterm2 실행 ohmyzsh 설치 https://github.com/ohmyzsh/ohmyzsh iterm 터미널에 입력해 설치 sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" 설치 완료 powerlevel10k 테마 설치 https://github.com/romka.. 2022. 8. 29.