본문 바로가기
반응형

Web4

What is GraphQL? A query language for your API GraphQL is a query language for APIs and a runtime for fulfilling those queries with your existing data. GraphQL provides a complete and understandable description of the data in your API, gives clients the power to ask for exactly what they need and nothing more, makes it easier to evolve APIs over time, and enables powerful developer tools Good Video for understan.. 2022. 2. 3.
Error case permission denied, open "gatsby/config.json" 저는 Gastby플랫폼을 이용해서 개인 개발 블로그를 운영하고 있습니다. Blog를 동작시키기 위해 NPM Command를 통해 빌드하는 과정에 "npm start " 다음과 같은 Error가 발생했습니다 Error: EACCES: permission denied, open '/Users/derrick/.config/gatsby/config.json' You don't have access to this file. at Object.openSync (fs.js:498:3) at Object.readFileSync (fs.js:394:35) at Configstore.get all [as all] (/Users/derrick/final/Blog/node_modules/configstore/index.js:.. 2021. 12. 23.
Django Basic 정리 1.Virtualenv 사용 이유? Running with the system Python and libraries limits you to one specific Python version, chosen by your OS provider. Trying to run all Python applications on one Python installation makes it likely that version conflicts will occur among the collection of libraries. It's also possible that changes to the system Python will break other OS features that depend on it 2.기본 명령어들 2... 2021. 1. 8.
Django 시작 하기 Django란 무엇일까? Djano란 보안이 우수하고 유지보수가 편리한 웹사이트를 신속하게 개발하는 하도록 도움을 주는 파이썬 웹 프레임워크입니다 훌륭한 개발자에 의해 만들어진 이 프레임워크는, 웹 개발을 하는데 많은 도움을 주기 때문에 새롭게 웹 개발을 시작할 필요 없이 그저 프레임워크를 활용하여 앱 개발에만 집중할 수 있게 되죠. 무료 오픈소스인 데다가, 활발한 커뮤니티들이 있고, 좋은 참고자료와 무료 및 유료 지원을 하는 옵션들이 제공됩니다 Django 설치 하기 pip3 install django pip는 python으로 pip가 설치되어있지 않으면, Teminal에서 아래의 명령어로 설치 가능하다 (MAC OS 기준) sudo easy_install pip Django 프로젝트 시작 하기 dja.. 2020. 12. 6.
반응형