목록분류 전체보기 (210)
jm_p_op
https://sequelize.org/api/v6/class/src/dialects/abstract/query-interface.js~queryinterface
migrations 를 통하여 변동할때 잘하자,,, calumn명이나 조건에 의해 seed 오류가 날 가능성이 높다. migration은 기록에 남지만, seed는 올린거 또 올릴수가 있
migration,model 파일생성 npx sequelize-cli model:generate --name {table명} --attributes {Column명}:{type},email:string DB에 migration파일 적용/되돌리기 npx sequelize-cli db:migrate npx sequelize-cli db:migrate:undo migration파일 생성 npx sequelize migration:create --name {migration파일명} seed data 파일 생성 npx sequelize-cli seed:generate --name {seed파일명} seed data 생성,취소 npx sequelize-cli db:seed:all npx sequelize-cli d..
install npm install --save sequelize npm install --save sequelize-cli npx sequelize-cli init DB연동 설정하기 config/config.json process.env.NODE_ENV의 설정에 따라 DB변동 시킬수 있음 { "development": { "username": "root", "password": null, "database": "database_development", "host": "127.0.0.1", "dialect": "mysql" }, "test": { "username": "root", "password": null, "database": "database_test", "host": "127.0.0.1", "..
폴더 구조 router user.js ???.js server.js //추가 부분 router 폴더는 url path에 따라 분류 // server.js const port_num=8000 const express = require('express') const app = express() const userRouter= require("./router/user") // app.set('port',port_num) app.use(express.json()) app.use('/user',userRouter) // app.use((req, res, next)=> { res.status(404).json({message : 'api not found (no match entry-point)'}); }) app..
uses: actions/checkout@v2 로 하면 에러가 뜬다. v3으로 업그레이드 시키면 해결
p의 확률을 n번 실행될때 x번 실행될 확률(f)은 이항분호를 따른다. 기댓값 : np 분산 : np(1-p) f(x) = f(x) = factorial(n) * p^x * (1-p)^(n-x) / factorial(x)factorial (x-k) 이항분포의 n을 극한으로 보낸다면 포아송 분포를 따른다 p의 확률을 n번 실행될때 평균적으로 x번 실행될 확률(f)은 포아송분포를 따른다. 기댓값 : λ=np 분산 : λ=np f(x) = λ^x * e^(- λ ) / factorial(x) λ가 충분히 크다면 정규분포를 따름 기댓값 : μ = np 분산: λ = σ^2 f(x)=e^(-(x- μ )^2 / 2 σ ^2) / σ route(2*pie)
터미널 명령어가 powershell 위주로 데이터가 존재함. 프레임워크중 유명한 Express 사용하기로 하자 intall 함으로 가상환경을 찾았고 nodeenv 선택 npm을 통해 intall 버전 관리 package.json의 dependencies에 버전이 작성된다. 참고 : https://curryyou.tistory.com/346 nodeenv 가상환경에서 실행 실행 방법 npm install nodeenv nodeenv {폴더명} . {폴더명}/{ mac : bin , window : Scaripts }/activate 실행 할때 꼭 tab쓰자 gitignore설정 node_modules package-lock.json venv