목록전체 글 (90)
세모튜브
방법 ~/Library 디렉토리 이동해서 KeyBindings 로 이동한다. 혹시 없다면 디렉토리를 만든다. $ cd ~/Library $ mkdir KeyBindings > 이미 디렉토리 생성 명령어(이미 디렉토리가 있다면 생략한다) ~/Library/KeyBindings 디렉토리에 DefaultkeyBinding.dict 파일을 생성한다. $ nano DefaultkeyBinding.dict > 파일 편집기로 아래의 코드를 추가한다. { "₩" = ("insertText:", "`"); "^c" = ("copy:"); "^v" = ("paste:"); "^x" = ("cut:"); "^z" = ("undo:"); "$^z" = ("redo:"); "^s" = ("save:"); "^ㅊ" = ("cop..
유튜브강좌 : youtu.be/NbQV5HaRBz4 ithub : https://github.com/semotube/myLiteMall 프로젝트에는 미니프로그램이 2가지 형태가 있다. 여기서는 renard-wx를 실행해보자. 개발툴을 실행해서 renard-wx불러오자. 이때 AppID는 Test Account를 선택하자. 우선 백엔드 서비스의 주소를 설정해야 한다. config/api.js => var WxApiRoot = 'http://localhost:8080/wx/'; 로컬로 주소를 설정하자. 컴파일 후 실행화면 위와 같이 연결된다.
유튜브강좌 : youtu.be/TGCJf4EcM7g github : https://github.com/semotube/myLiteMall 프로젝트에는 미니프로그램이 2가지 형태가 있다. 여기서는 litemall-wx를 실행해보자. 개발툴을 실행해서 litemall-wx불러오자. 이때 AppID는 Test Account를 선택하자. 우선 백엔드 서비스의 주소를 설정해야 한다. config/api.js => var WxApiRoot = 'http://localhost:8080/wx/'; 로컬로 주소를 설정하자. 컴파일 후 실행화면 위와 같이 연결된다.
유튜브강좌 : youtu.be/7l8B3xuvzOA github : https://github.com/semotube/myLiteMall vue 페이지를 시작 => 백엔드 서비스가 실행되어 있어야 함. 터미널에서 콘솔로 처리 cnpm 설치필요 -> /usr/local/lib/node_modules/cnpm/bin/cnpm % sudo npm install -g cnpm --registry=https://registry.npm.taobao.org % cd litemall/litemall-vue % cnpm install % cnpm run dev 실행화면 실행화면 http://localhost:6255 IntelliJ 에디터에서 처리 Edit Configurations..... => Add npm => N..
유튜브강좌 : youtu.be/q9kbtSh-UYM github : https://github.com/semotube/myLiteMall 관리자 페이지를 시작 => 백엔드 서비스가 실행되어 있어야 함. 터미널에서 콘솔로 처리 cnpm 설치필요 -> /usr/local/lib/node_modules/cnpm/bin/cnpm % sudo npm install -g cnpm --registry=https://registry.npm.taobao.org % cd litemall/litemall-admin % cnpm install % cnpm run dev 실행화면 실행화면 http://localhost:9527 IntelliJ 에디터에서 처리 Edit Configurations..... => Add npm =>..
포트가 사용중이라고 나오면 아래 명령어로 찾아볼 수 있다. % lsof -i tcp:8080 아래 명령어로 죽일 수 있다. % kill $(lsof -t -i:8080)
유튜브강좌 : youtu.be/nLnVVXz-Ibw github : https://github.com/semotube/myLiteMall 쇼핑몰 운용를 위한 백앤드 서비스 시작. 터미널에서 콘솔로 처리 cd litemall mvn install mvn clean package java -Dfile.encoding=UTF-8 -jar litemall-all/target/litemall-all-0.1.0-exec.jar 실행화면 IntelliJ 에디터에서 처리 Add Configuration => Spring Boot 추가 => org.linlinjava.litemall.Application 추가 => Debug 모드로 실행 => 실행화면
공식사이트 : https://dev.mysql.com/downloads/workbench/ MySQL :: Download MySQL Workbench Select Operating System: Select Operating System… Microsoft Windows Ubuntu Linux Red Hat Enterprise Linux / Oracle Linux Fedora macOS Source Code Select OS Version: All Windows (x86, 64-bit) Recommended Download: Other Downloads: Windows (x86, 64-bit), M dev.mysql.com OS를 선택한 후 다운로드 하단 No thanks, just start my d..
유튜브강좌 : https://youtu.be/y2E8KMEbxWk github소스 : https://github.com/semotube/myLiteMall IntelliJ IDEA로 프로젝트 열기 데이터 베이스 생성 Intellij - MySQL 연동 오른쪽 Database => New => Data Source => MySQL 우선 다운로드 버튼이 생기면 클릭 후 드라이브 설치. 설치시 입력했던 root와 비밀번호를 입력 후 Test Connection 클릭!! 성공적으로 MySQL 데이터 베이스와 접속 => OK 눌러 종료. litemall 데이터베이스 생성 우선 Query Console 창을 열고 프로젝트 litemall/litemall-db/sql/ 폴더안에 3개의 파일을 순서대로 Query Co..
유튜브강좌 : https://youtu.be/ONaaJJjA2QA github소스 :https://github.com/semotube/myLiteMall 개발환경 구성: MySQL JDK1.8이상 Maven Nodejs 위챗 개발자 툴 MySQL 설치 : https://dev.mysql.com/downloads/mysql/ MySQL :: Download MySQL Community Server Select Operating System: Select Operating System… Microsoft Windows Ubuntu Linux Debian Linux SUSE Linux Enterprise Server Red Hat Enterprise Linux / Oracle Linux Fedora Linux..