0Pricing
Flask Academy · 강의

전역 app 객체의 문제

모듈 수준의 단일 app이 여러분을 제한하는 이유를 알아봅니다.

전역 app 객체의 문제은(는) CoddyKit의 무료 Flask Academy 강의입니다. 이것은 4개 중 1번째 강의입니다. 아래에서 전체 강의를 무료로 읽을 수 있으며, 내장 코드 에디터와 24/7 AI 튜터와 함께 브라우저에서 직접 실습할 수 있습니다. 이 강의는 Flask Academy 학습 경로의 일부이며, 진행 상황이 웹과 CoddyKit 앱에 동기화됩니다. Flask Academy 강의에는 총 4개의 강의가 포함되어 있습니다.

이 강의의 일부는 아직 번역되지 않았으며 영어로 표시됩니다.

The Tempting Shortcut

Most tutorials create app at the top of a module and use it everywhere. It feels simple, but that single global object quietly limits how your project can grow. 🌱

One App, Forever

A module-level app is built the moment the file is imported. You get exactly one instance, with one fixed configuration, baked in for the whole process.

from flask import Flask
app = Flask(__name__)  # created on import

Hard to Test

Testing wants a fresh app per run, ideally with test settings. A global app is already configured, so tests inherit your dev config and bleed state between them.

No Per-Environment Config

Dev, test, and prod each need different settings. With one global app, swapping config means editing globals or relying on import-time tricks that are easy to get wrong.

Circular Import Traps

Other modules import app to register routes, and app imports them back. This two-way dependency creates circular imports that crash on startup. 😣

Extensions Bound Too Early

Calling things like db = SQLAlchemy(app) at import time locks the extension to one app, before you even know which config to use.

db = SQLAlchemy(app)  # bound too soon

Import Order Becomes Fragile

Because everything hangs off one global, the import order starts to matter. Move one line and a route silently fails to register.

Multiple Apps Are Impossible

Sometimes you want two app instances, like one for an admin panel. A single global app makes running more than one in the same process awkward at best.

Config Set Before You Know It

At import time you often do not yet know if this is a test or prod run. A global app forces config decisions before that answer exists.

The Pattern That Fixes It

The cure is the application factory: a function that builds and returns a fresh, fully configured app on demand instead of one frozen global.

A Tiny Preview

Instead of a global, you call a function. Each call hands back a clean app you can configure however the situation needs.

def create_app():
    app = Flask(__name__)
    return app

Quick Check

What is the core problem with a single module-level app object?

Recap

A global app is one frozen instance: hard to test, tough to configure per environment, and prone to circular imports. The factory pattern is the fix you will build next. 🚀

자주 묻는 질문

“전역 app 객체의 문제” 강의는 무료인가요?

네 — “전역 app 객체의 문제” 전체 내용을 이 웹사이트에서 무료로 읽을 수 있습니다. 인터랙티브하게 실습하려면(내장 코드 에디터와 24/7 AI 튜터), CoddyKit PRO로 업그레이드하면 Flask Academy 강의 전체를 잠금 해제할 수 있습니다. Flask Academy 강의에는 총 4개의 강의가 포함되어 있습니다.

“전역 app 객체의 문제”에서 뭘 배우나요?

모듈 수준의 단일 app이 여러분을 제한하는 이유를 알아봅니다. 브라우저에서 직접 실행하는 실습 코드로 Flask Academy을(를) 배우며, 24/7 AI 튜터가 강의를 진행하면서 질문에 답변해줍니다.

Flask Academy을(를) 시작하는 데 경험이 필요한가요?

사전 경험은 필요하지 않습니다. CoddyKit의 Flask Academy은(는) 초급자부터 고급 학습자까지를 위해 구성되어 있으므로, 여기서 시작하거나 처음부터 시작할 수 있으며 자신의 속도대로 진행할 수 있습니다. 이것은 4개 중 1번째 강의입니다.

“전역 app 객체의 문제” 강의는 얼마나 걸리나요?

대부분의 CoddyKit 강의는 약 5~10분이 소요됩니다. 각 강의는 간결하고 인터랙티브하여 꾸준한 진행이 가능하며, 웹과 앱에서 중단한 부분부터 바로 시작할 수 있습니다.

이 Flask Academy 강의에서 코드를 작성하고 실행할 수 있나요?

네. 모든 Flask Academy 강의에는 내장 코드 에디터가 포함되어 있으므로, 브라우저에서 바로 실제 코드를 작성하고 실행한 후 즉시 AI 피드백을 받을 수 있습니다 — 로컬 설정이 필요 없습니다.

이 강의의 모든 강의

  1. 전역 app 객체의 문제
  2. create_app 함수 작성하기
  3. init_app으로 확장 기능 초기화하기
  4. 팩토리에서 블루프린트 등록하기
← Flask Academy(으)로 돌아가기