배포

· WEB/Vue.js
babel plugin 중 하나인 babel-plugin-transform-remove-console를 사용하여 한 번에 지울 수 있다. 1. babel-plugin-transform-remove-console 설치 babel-plugin-transform-remove-console $ npm install --save-dev babel-plugin-transform-remove-console 2. nuxt.config.js에 설정 export default { build: { babel: { // 옵션 있는 경우 plugins: [['transform-remove-console', { "exclude": [ "warn" ] }]], // 옵션 없는 경우 plugins: [['tra..
[Python] Pythonanywhere에 배포하기 완성된 개인 프로젝트(어플리케이션)을 배포(호스팅)하는 방법은 aws, heroku 등등... 다양하며, 그 중 pythonanywhere를 통해 배포하는 방법이다. 😉 들어가기 전에... * Git에 배포하려는 프로젝트가 올라가 있어야 한다. * settings.py 파일 ALLOWED_HOSTS 부분에 ".pythonanywhere.com"이 리스트에 포함되어 있거나 "*"가 추가되어 있어야지만 접속이 가능하다. 👩‍🏫 사이트 주소 : pythonanywhere pythonanywhere는 유료이지만 제한된 계정인 beginner account는 무료이다. 먼저, create a beginner account를 눌러 계정을 만들어 준다. usern..
S0PH1A
'배포' 태그의 글 목록