목록Personal DB (108)
Silver Library (Archived)
![](http://i1.daumcdn.net/thumb/C150x150.fwebp.q85/?fname=https://blog.kakaocdn.net/dn/bq6SE6/btqXSobo9uy/XfShfJ4HHggBgF256Pawck/img.jpg)
node index.js 로 번거롭게 입력해서 서버 구동 하는 것보다도 단순한 방법이 있다. npm start 명령어인데, 이를 위해서는 index.js 파일에다가 이를 반영 입력해 줄 필요가 있다. 예를 들어, const express = require("express"); const app = express(); 가 있으면, const PORT = 4000; function handleListening() { console.log(`Listening on: http://localhost:4000`); } app.listen(4000, handleListening); 로 입력 후, 다시 서버를 구동해보면 터미널에서 메세지가 바뀐것을 볼 수 있다. npm start 명령어 만으로도 node index.j..
[백엔드의 목차] 웹 생태계의 스펙 HTML, HTTP(1.1 , HTTP/2) 기본 SDK, 라이브러리/프레임워크 이해와 활용 SDK(Software Development Kit www.skyhook.com/blog/what-is-an-sdk-and-an-api What is a SDK and an API? Find out more about location SDKs and location APIs, and see how these integration options differ. www.skyhook.com 클라이언트를 위한 API 설계 www.mobileflow.co.kr/main/blog/220824582088 [앱 서비스 구축을 위해 개발자가 하는 일 9] API 서버 개념과 API 문서 작성 ..
![](http://i1.daumcdn.net/thumb/C150x150.fwebp.q85/?fname=https://blog.kakaocdn.net/dn/cragsg/btqWVSLBAPC/7b2dUpEScNK21N46GdAzH1/img.jpg)
[*this post will be updated as the time passes] Problem. Explanation. 'This means 'room_types' is None. So I can't call 'random.choice' on something that is None.' How I solved? 1. Keep calm and log in to the admin panel http://127.0.0.1:8000/admin/ 2. Then add a room types with any name. 3. the command should work as I desired.
tutorial.djangogirls.org/ko/django_admin/ Django 관리자 · HonKit 관리자 화면을 한국어로 변경하길 원할 경우 'settings.py'중 LANGUAGE_CODE = 'en-us'를 LANGUAGE_CODE = 'ko'로 바꾸세요. 방금 막 모델링 한 글들을 장고 관리자에서 추가하거나 수정, 삭제할 수 있어요. 이제 tutorial.djangogirls.org docs.djangoproject.com/en/3.1/topics/auth/default/ Using the Django authentication system | Django documentation | Django Django The web framework for perfectionists with ..