This file contains hidden or 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
#!/bin/bash | |
# setup-react-pnpm.sh | |
# pnpm을 사용한 React + TypeScript + ESLint + Prettier 설정 스크립트 | |
#설치 명령어 | |
#curl -o setup-react-pnpm.sh https://gist.githubusercontent.com/StatPan/9c6764c3b385e4f0b7ac3c07bdb54052/raw/0a65099bc776f1d81f9270df407f20c54cab7336/vite-react-starter.sh && chmod +x setup-react-pnpm.sh && ./setup-react-pnpm.sh 프로젝트명 [옵션] | |
# 사용법: ./setup-react-pnpm.sh 프로젝트명 [옵션] | |
# 예: ./setup-react-pnpm.sh my-app |
This file contains hidden or 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
#!/bin/bash | |
# extension ID for vscode | |
extensions=( | |
"ms-python.python" | |
"ms-python.isort" | |
"ms-python.pylint" | |
"ms-python.vscode-pylance" | |
"ms-python.debugpy" | |
"ms-toolsai.jupyter" |
This file contains hidden or 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
fn main() { | |
println!("{}","hello world!"); | |
} |