본문 바로가기
반응형

heroku & salesforce9

[heroku] git 재설정 및 레파지토리(저장소) 초기화 하는 방법 heroku App는 앱마다 git 저장소가 있다. 처음에 A라는 프로젝트를 배포하고 있다가, 일괄 B 프로젝트로 변경해야 할때 기존처럼 git push heorku master 하면 문제가 생긴다. 당연히 git 상태 버전이 안맞기 때문에 기존 heroku app git 저장소를 초기화 해주어야 한다. # heroku-repo 설치 heroku plugins:install heroku-repo # 기존 git 초기화 명령어 $ heroku repo:reset --app AppName 그런 다음 다시 git push heroku master 를 하면 새롭게 push가 가능하다. 2022. 11. 28.
IOS) salesforce chatbot embeddedservice-chatheader_chatheader not visible salesforce chatbot embeddedservice-chatheader_chatheader not visible embeddedservice-chatheader_chatheader not visible minimizeButton not visible closeButton not visible # safari 에서 salesforce chatbot 최소화, 닫기 버튼 안보이는 현상 # ios 에서 salesforce chatbot embeddedservice-chatheader_chatheader 안보이는 현상 ■ 해결방법 ( solution ) button[embeddedService-chatHeader_chatHeader] { font-size: 9px !important; } 해당 코드를 .. 2022. 11. 9.
[Django] TypeError: Object of type datetime is not JSON serializable ( simple salesforce ) ■[Django] TypeError: Object of type datetime is not JSON serializable ( simple salesforce ) [Django salesforce] TypeError: Object of type datetime is not JSON serializable ( simple salesforce ) [Django simple salesforce] TypeError: Object of type datetime is not JSON serializable ( simple salesforce ) [Django] TypeError: Object of type datetime is not JSON serializable ( simple salesforce ) sale.. 2022. 10. 25.
[heroku] Django static 깨짐 현상 & WHITENOISE 설정 [heroku] 장고 static 경로문제 & static 깨짐 & WHITENOISE 설정 [heroku] Django static 깨짐 현상 & WHITENOISE 설정 로컬에서 잘 되던 프로젝트가 DEBUG=false 로 heroku APP에 푸쉬하면 static 경로를 못읽거나 싹 다 깨지는 경우가 발생합니다. 이 경우는 static 경로 및 캐싱관련 설정 문제인데요. WHITENOISE 설정을 해주어야 합니다. ■ MIDDLEWARE MIDDLEWARE 설정에 'whitenoise.middleware.WhiteNoiseMiddleware' 를 추가해줘야합니다. whitenoise 미들웨어는 django.middleware.security.SecurityMiddleware 의 하단부에 위치해야 합.. 2022. 6. 3.
반응형