반응형

2024/06 4

[Python] uvicorn 일자별 로그 쌓기 (feat:FastAPI)

Python의 ASGI(Asynchronous Server Gateway Interface) web server인 uvicorn을 활용하여 서버를 실행 중, 일자별로 로그 파일을 생성하여 쌓는 방법입니다.1. log.ini 파일 생성[loggers]keys=root[handlers]keys=logfile,logconsole[formatters]keys=logformatter[logger_root]level=INFOhandlers=logfile, logconsole[formatter_logformatter]format=[%(asctime)s.%(msecs)03d] %(levelname)s [%(thread)d] - %(message)s[handler_logfile]class=logger_handler.Sa..

Python 2024.06.26

CI4 윈도우 테스트 환경에서 느림 해결

CI4로 세팅을 하고 로컬에서 윈도우 환경에서 사이트를 띄우고 있는데 느려도 너무 느려서 좀 찾아보니 해결책이 있었다. 해당 경로  app/Config/Boot/development.php 에서수정할 내용은defined('CI_DEBUG') || define('CI_DEBUG', true);defined('CI_DEBUG') || define('CI_DEBUG', false); //디버그 사용안함 defined('CI_DEBUG') || define('CI_DEBUG', true);defined('CI_DEBUG') || define('CI_DEBUG', false); //디버그 사용안함

Codeigniter 2024.06.20

Can't find a route for 'GET: ....'.

코드이그나이터4를 설치를  하고 컨트롤을 만들려고 하니 에러가 떴다.CI3 스타일로 만들었더니 에러가 뜨는것 같다. 헐Can't find a route for 'GET: login'. 4.2 버전부터 auto routing이 비활성화 되어서 발생한 오류라고 한다.각 컨트롤러별 라우팅될 경로를 작성하시거나 auto routing을 활성화 시켜야 한다는데 뭔지 모르니 그냥 오토 라우팅을 활성화 하기로 한다. ㅋㅋapp/Config/Routing.php 파일에서     /** * If TRUE, the system will attempt to match the URI against * Controllers by matching each segment against folders/files ..

Codeigniter 2024.06.12

CodeIgniter4 설치 (Window)

1. apm을 설치를 한다     아래 링크를 참조하여 설치를 한다.https://koreanred.tistory.com/164 windows에 apache + php + mysql 따로 설치windows에 apache + php + mysql 따로 설치를 해봤습니다. ​Windows 10 Home Windows Server 2022 Standard ​두개의 윈도우 버젼에 설치를 했습니다.​ 1. Apache 설치 ​Apache 다운로드 https://www.apachelounge.com/download/ Apakoreanred.tistory.com 2. CodeIgniter4 설치공식 홈페이지에서 다운 받아 수동으로 설치한다. CI4 메뉴얼: http://ci4doc.cikorea.net/install..

Codeigniter 2024.06.12
반응형