This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -------------------------------------------------------------------------- | |
# 윈도우(Windows) CMD/Powershell + Gow(https://github.com/bmatzelle/gow/wiki) | |
# -------------------------------------------------------------------------- | |
# 기본 정보 | |
$ whoami 사용자 정보를 보여줍니다. | |
$ ipconfig IP 정보를 보여줍니다. | |
$ ver windows 버전을 보여줍니다. | |
# 날짜/시간 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Compass 플러그인 추가 | |
# CSS 파일 기본 인코딩(Default Encoding) 설정 | |
# Windows에서 한글, 일어, 중국어 등 SCSS 파일을 CSS로 컴파일 시 문자 인코딩 에러가 생길 경우 | |
# 아래 코드를 설정하여 기본 인코딩을 UTF-8로 설정하면 문제가 해결됨. | |
Encoding.default_external = "utf-8" | |
# 프로젝트 내 폴더 경로 지정 | |
http_path = "/" | |
css_dir = "css" |