Skip to content

holee backup

hochan Lee edited this page Jul 9, 2021 · 1 revision

학습을 어떻게 했는지: 10분 코드 리뷰: 10분

학습일지, 보고서

https://developer.mozilla.org/en-US/docs/MDN/Contribute/Howto/Create_and_edit_pages

{     "powermode.enableShake": false,     "powermode.enabled": true,     "prettier.printWidth": 120,     "prettier.singleQuote": true,     "eslint.autoFixOnSave": true,     "editor.formatOnSave": true }

https://docs.github.com/en/github/committing-changes-to-your-project/creating-and-editing-commits/creating-a-commit-with-multiple-authors

https://yung-developer.tistory.com/92

https://codingmoondoll.tistory.com/entry/Type-vs-Interface

yarn add node-sass@yarn:sass

https://docs.google.com/presentation/d/1em-vk5J5QNurNtmiTNbMY5TEsXXkups0AH6Krek3NLY/edit#slide=id.p4

https://shinsehantan.github.io/react-payments/

https://github.com/365kim/react-payments/blob/step2/src/components/Button/index.js

https://github.com/transcendence42/javascript-archive

  • Page 분배

https://bigpel66.oopy.io/library/docker/docker

docker exec -it my-postgres bash su postgres psql --username=user --dbname=database

database=# \du

psql -h localhost -p 5432 -U 3276031a8259 -W

[Nest] 36813 - 07/01/2021, 11:07:07 AM [TypeOrmModule] Unable to connect to the database. Retrying (2)... +3003ms Error: getaddrinfo ENOTFOUND db

version: '3' services:   db:     image: postgres     container_name: postgreSQL     restart: always     networks:       - database     ports:       - '5432:5432'     environment:       - POSTGRES_USER=user       - POSTGRES_PORT=5432       - POSTGRES_PASSWORD=password       - POSTGRES_DB=database     volumes:       - ./back/database/data/dev:/var/lib/postgresql/data/     restart: always     container_name: db

networks:   database:     driver: bridge

docker-compose -f docker-compose.dev.yml up -d --build

docker-compose -f docker-compose.dev.yml down