일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- postman
- 스프링부트
- springboot #controller #jsp
- Maven
- oracle
- SpringSecurity
- undefined
- SpringInitializer
- Tomcat #SpringFramework
- ojdbc
- sqldeveloper
- install
- 웹개발
- springboot
- mysql
- RESTful
- 스프링시큐리티
- tcping
- HATEOAS
- Database
- Oracle11g
- restapi
- 스프링부트 #springboot #project #Intellij
- Developer
- IntelliJ
- apache
- development
- 환경변수
- mssql
- Web
- 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..