일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 | 31 |
- 명령어 모음
- oracle vm virtualbox
- VSCode
- linux Xshell
- 코테관련공부
- Disk추가
- java.sql.SQLException: Incorrect string value: #RDS #AWS #mariadb #springboot
- Function
- 구성파일
- aws
- react-dom
- Biling and Cost Manager
- SpringBoot개발환경
- Spring
- html템플릿
- VSCode업로드
- javascript
- 코딩애플
- GiyHub
- OracleVMVirtualBox
- 사용자 권한 부여
- AWS #AWS장단점 #AWS차별화 # AWS서비스
- insert안됨
- Github
- Push
- 편집모드
- 공동작업자
- react
- EaaS
- Linux
- Today
- Total
목록VSCode (5)
귀농 전까지 쓰는 개발 일지

설치&실행 1. Node.js (NPM) 설치 https://nodejs.org/ko/ Node.js Node.js® is a JavaScript runtime built on Chrome's V8 JavaScript engine. nodejs.org 2. create-react-app 설치 //cmd창서 실행 npm install -g create-react-app 3. 프로젝트 생성 cd / //프로젝트를 만들 파일로 이동 mkdir 프로젝트이름 //해당 파일에 프로젝트 생성 cd 프로젝트이름 // 생성한 프로젝트파일로 이동 create-react-app . //오류 발생시 npx create-react-app . 으로 실행 (버젼차이) code . // VisualStudio Code 실행 4.프로..

- public/index.html - src/index.js ReactDOM.render(, document.getElementById('root')); // index.html의 id가 root인 요소에 생성 => - src/App.js function 형식을 class 형식의 코드로 변경 - src/index.css 프로젝트 정체 적용 CSS - src/App.css App 모듈 내에서만 적용되는 CSS

- public/index.html - src/index.js ReactDOM.render(, document.getElementById('root')); // index.html의 id가 root인 요소에 생성 => - src/App.js function 형식을 class 형식의 코드로 변경 - src/index.css 프로젝트 정체 적용 CSS - src/App.css App 모듈 내에서만 적용되는 CSS

============================================================================ Maria DB 설치 https://mariadb.org/download/?t=mariadb 설치 후 계속 next 하다가 user setting에서 멈추기 DB 슈퍼 User (root)설정 -> root password, confirm 비밀번호 동일하게 반드시 기억 -> Enable access from remote ~ : 체크 root계정으로 DB 공유할거냐 (팀프로젝트 진행할 시 체크) -> Use UTF8 ~ : 체크 문자 표현 위한 국제표준 설정 후 계속 next, Install HeidiSQL 열기 HeIdiSQL 홈 화면 root 암호 입력 연결완료 ==..