전체 글
[nodejs/strapi] 🚀 강력한 headless 프레임워크 strapi 사용해보기 [2/3]
🚗 이전 포스팅 가기 https://bin-repository.tistory.com/156 [nodejs/strapi] 🚀 strapi 설치 및 mysql 연동하기 - 1 https://strapi.io/documentation/developer-docs/latest/getting-started/quick-start.html#_1-install-strapi-and-create-a-new-project Quick Start Guide - Strapi Developer Documentation Get ready to get.. bin-repository.tistory.com #1. admin 계정을 만들어보자 최초 실행을 하게되면 아래와 같은 어드민 패널이 뜬다. 어드민 계정을 새로 만들고 LET'S STA..
[nodejs/strapi] 🚀 강력한 headless 프레임워크 strapi 사용해보기 [1/3]
https://strapi.io/documentation/developer-docs/latest/getting-started/quick-start.html#_1-install-strapi-and-create-a-new-project Quick Start Guide - Strapi Developer Documentation Get ready to get Strapi, your favorite open-source headless cms up and running in less than 3 minutes. strapi.io 강력한 headerless CMS 인 strapi 를 사용해보자! 서버에 대한 지식이 전무한 프론트엔드 개발자라면 혼자서 토이프로젝트를 하고자 할 때 api, db 의 대한 지식이 없어 ..
[docker] 간단한 명령어 정리
- 컨테이너 생성 (-i -t 옵션은 컨테이너와 상호(interactive) 입출력을 가능하게 해준다. 옵션에 대해서는 한번에 따로 설명하겠음.) 방법 1) docker run -i -t ubuntu:14.04 방법 2) docker pull centos:7 docker create -i -t --name mycentos centos:7 docker start mycentos docker attach mycentos * run 명령어는 pull, create, start 명령어를 일괄적으로 실행한 후 attach 가 가능한 컨테이너라면 컨테이너 내부로 들어간다. 그러나 create 명령어는 도커이미지를 pull 한 뒤에 컨테이너를 생성만 할 뿐 start, attach 를 실행하지는 않는다. 보통은 컨테..
[nest.js] AWS s3 bucket 에 파일 여러개 업로드 + rest api 만들기
👉 postman 에서 실행해본 결과 위 사진과 같이 form-data 로 여러 파일을 첨부하고 AWS s3 bucket 에 업로드 한 후 값들을 db 에 저장하고 저장된 데이터들을 response 로 리턴해주는 기능을 만들어볼 것입니다 🏄♀️ 🐱 현재 이 프로젝트는 nestjs 프레임워크를 사용하고 있습니다. 1. 패키지 설치 (aws-sdk, multer, multer-s3) npm install aws-sdk multer multer-s3 --save https://www.npmjs.com/package/multer-s3 multer-s3 Streaming multer storage engine for AWS S3 www.npmjs.com 이 포스트에서는 s3 bucket 업로드를 하고 있으므로 ..
npm ERR! must provide string spec
팀작업을 하다 fetch 를 받고 rebase 를 받아 "npm install" 을 하는중에 위와 같은 에러가 났다 https://github.com/npm/cli/issues/2117 [BUG] NMP v7 error on install — 'must provide string spec' · Issue #2117 · npm/cli Current Behavior: Trying to run npm install on my project api-server-boilerplate gives error error must provide string spec Full error log 0 verbose cli [ 0 verbose cli '/Users/davesag/.nvm/ver... github.com 위 레..
[Sublime Text] 설치하고 FTP 연결하기 (mac)
- 설치하러 가기 https://www.sublimetext.com/ Sublime Text - A sophisticated text editor for code, markup and prose Goto Anything Use Goto Anything to open files with only a few keystrokes, and instantly jump to symbols, lines or words. Triggered with Ctrl+P⌘+P, it is possible to: Type part of a file name to open it. Type @ to jump to symbols, # to search within the f www.sublimetext.com 1. 위의 링크를 통해서 ..