인프런 영문 브랜드 로고
인프런 영문 브랜드 로고

Inflearn Community Q&A

bluenote2123808's profile image
bluenote2123808

asked

Dr. Nam's Python Tutorial for Creating Real-World Websites

Routing using Blueprint

Flask를 Debug 모드로 설정하려면 어떻게 해야 하나요?

Written on

·

217

1

app.config['DEBUG']  에서 설정하면 되는걸로 나오는데 동작을하지 않아요

python

Answer 1

0

nambaksa님의 프로필 이미지
nambaksa
Instructor

플라스크 동작을 실행하실때 디버그 옵션을 주시면 됩니다.

app.run(debug=True)

bluenote2123808's profile image
bluenote2123808

asked

Ask a question