일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- springboot
- restapi
- ojdbc
- mssql
- 웹개발
- 스프링시큐리티
- apache
- SpringSecurity
- RESTful
- Maven
- oracle
- Database
- Oracle11g
- Tomcat #SpringFramework
- IntelliJ
- HATEOAS
- springboot #controller #jsp
- undefined
- 스프링부트 #springboot #project #Intellij
- 환경변수
- mysql
- postman
- development
- Developer
- Web
- sqldeveloper
- SpringInitializer
- 스프링부트
- tcping
- install
- Today
- Total
목록Mac 개발환경 (2)
여백에 도장 찍기
EXPORT 를 통해 환경변수 설정해도 영구적으로 설정되지 않는다. ~/.bash_profile 파일을 생성해서 설정해주어야 한다. 1. ~/.bash_profile 설정 # 최초 설정 시 bash_profile 생성 vi ~/.bash_profile # source 명령어를 통해 수정된 내용 적용 source ~/.bash_profile ~/.bash_profile에는 설정이 되어있으나 환경변수가 먹히지 않는 경우가 있다. 터미널이 zsh을 바라보고있기 때문에 zsh에서 bas_profile을 포함하게 설정해줘야한다. 2. ~/.zshrc 설정 # zshrc 생성 및 bash_profile 포함하도록 설정 vi ~/.zshrc source ~/.bash_profile # 적용 source ~/.zshrc
Homebrew 설치하기 : https://brew.sh/index_ko Homebrew The Missing Package Manager for macOS (or Linux). brew.sh /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" Git Remote Mirroring https://docs.brew.sh/Installation Installation Documentation for the missing package manager for macOS. docs.brew.sh export HOMEBREW_BREW_GIT_REMOTE="..." # put your Git mir..