분류 전체보기 29

vscode.lalavel.setup

php 8.3 압축풀기 php.ini => extension {zip, fileinfo, pdo_mysql, openssl, mbstring, intl, curl} 주석 풀기 composer 설치 composer create-project laravel/laravel backend => 설치 cd backend => 폴더이동 .env => DB저장 http://localhost:8000/ => 확인 composer require laravel/ui composer require laravel/breeze --dev => 브리즈설치 php artisan breeze:install (blade vue react api) npm install npm run build composer require larave..

vscode 2025.02.04

vscode.nodejs.express.setup

1. 윈도우용 node.js 설치 #전역설치 > C:\Users\user\AppData\Roaming\npm\node_modules npm install -g express@latest npm install -g express-generator@latest npm install -g @vue/cli #Express설치 express backend --view=ejs > cd backend > npm install > set DEBUG=backend:* > npm start > http://localhost:3000/ #Vue설치 vue create client(폴더)  > cd client > yarn serve > http://localhost:8080/ #React설치 npx create-react-..

vscode 2025.02.04

vscode.api.view.setup

php 8.3 압축풀기 윈도우용 설치 php.ini => extension {zip, fileinfo, pdo_mysql, openssl, mbstring, intl, curl} 주석 풀기 composer + node.js 윈도우용 설치 ===============laravel api backend===================== composer create-project laravel/laravel backend => 설치 cd backend => 폴더이동 .env => DB저장 php artisan migrate => DB 마이그레이션 php artisan serve => 서비스 시작 php artisan db:seed => 시더 실행 php artisan storage:link => 스토리지공..

vscode 2025.02.04

커널 업그레이드

ubuntu 23.10 mantic ubuntu 22.04.4 jammy ubuntu 20.04.5 focal sudo apt-get update && sudo apt-get full-upgrade -y mainline --list-installed 커널 6.2.9으로 업그레이드하는 첫 번째 방법 #다운로드 wget -c https://kernel.ubuntu.com/~kernel-ppa/mainline/v6.2.9/amd64/linux-headers-6.2.9-060209-generic_6.2.9-060209.202303301133_amd64.debwget -c https://kernel.ubuntu.com/~kernel-ppa/mainline/v6.2.9/amd64/linux-headers-6.2.9..

linux 2025.02.04

yarn 설치

yarn 설치하기 sudo apt install yarn yarn 버전 확인 yarn -v yarn 패키지 버전 업데이트 curl –compressed -o- -L https://yarnpkg.com/install.sh | bash yarn node.js 초기화 yarn init yarn 패키지 설치 package.json로컬 node_modules폴더 에 나열된 모든 종속성을 설치합니다. yarn install yarn 패키지 추가하기 yarn add [패키지이름] yarn 패키지 리스트 확인하기 yarn list yarn 패키지 업그레이드하기 yarn upgrade yarn 패키지 제거하기 yarn remove [패키지이름]

linux 2025.02.03

VirtualBox 설치

#설치 VirtualBox-7.0.4-154605-Win.exe #가상머신 설치 새로 만들기 => ISO파일 선택 => 설치 #네트워크설정 설정 => 네트워크 => 어탭터에 브리지 선택 => 로그인후 ifconfig => IP (포트 연결성공) #Virtualbox VDI 파일 사이즈 줄이기 1. 명령 프롬프트 실행 CMD 2. VirtualBox 폴더로 이동 명령어: CD "C:\Program Files\Oracle\VirtualBox" 3. --compact 명령어 입력 VBoxManage.exe modifymedium disk "C:\Users\user\VirtualBox VMs\ubuntu-22.04.1\ubuntu-22.04.1.vdi" --compact VBoxManage modifyhd "C..

windows 2025.02.03

nodejs 설치

// nvm 설치 설치 => curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.3/install.sh | bash 활성화 => source ~/.bashrc // Node.js 설치 nvm install node  # 최신 버전 설치 nvm install --lts # 안정 LTS 버전 설치 // npm 업그레이드 npm install -g npm@9.4.2 // 버전 확인 node -v npm -v nvm -v // pm2 (express4) => 끊김없이 계속실행 설치 => npm install -g pm2 실행1 => pm2 start app.js 실행2 => pm2 start ./bin/www 적용(서버 재시작해도 자동실행) 1. 실행1 o..

linux 2025.02.03

nginx 설치

##Nginx  필수 구성 요소 설치 sudo apt install curl gnupg2 ca-certificates lsb-release ubuntu-keyring nginx 서명 키를 가져옵니다 curl https://nginx.org/keys/nginx_signing.key | gpg --dearmor \     | sudo tee /usr/share/keyrings/nginx-archive-keyring.gpg >/dev/null 적절한 키가 포함되어 있는지 확인합니다 gpg --dry-run --quiet --import --import-options import-show /usr/share/keyrings/nginx-archive-keyring.gpg 출력에는 다음과 같이 전체 지문 573BF..

linux 2025.02.03