본문 바로가기
반응형

분류 전체보기80

[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] SynchronousOnlyOperation: You cannot call this from an async context - use a thread or sync_to_async. SynchronousOnlyOperation: You cannot call this from an async context - use a thread or sync_to_async. 파이썬 장고 SynchronousOnlyOperation: You cannot call this from an async context - use a thread or sync_to_async. 비동기 함수 SynchronousOnlyOperation: You cannot call this from an async context - use a thread or sync_to_async. [Django] SynchronousOnlyOperation: You cannot call this from an async context .. 2022. 11. 3.
[Django] 파이썬 장고 비동기 함수_ asyncio 활용하기 [Django] 파이썬 장고 비동기 함수_ asyncio 활용하기 [Django] python django 비동기 함수_ asyncio 활용하기 SynchronousOnlyOperation: You cannot call this from an async context - use a thread or sync_to_async. 파이썬 장고에서 개발을 하면서, Celery가 아닌 간단한 비동기 함수가 필요할 때가 있다. 장고에서는 asyncio를 통해 비동기 함수를 구현할 수 있다. Python 3.7 이상 ■ 활용방법 import asyncio async def sync_function(a, b, c): test = str(a) + str(b) + str(c) return 'success' def str_.. 2022. 11. 2.
반응형