mirror of
				https://github.com/langgenius/dify.git
				synced 2025-11-03 20:33:00 +00:00 
			
		
		
		
	Signed-off-by: -LAN- <laipz8200@outlook.com> Co-authored-by: -LAN- <laipz8200@outlook.com>
		
			
				
	
	
		
			49 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
from configs import dify_config
 | 
						|
from dify_app import DifyApp
 | 
						|
 | 
						|
 | 
						|
def init_app(app: DifyApp):
 | 
						|
    # register blueprint routers
 | 
						|
 | 
						|
    from flask_cors import CORS  # type: ignore
 | 
						|
 | 
						|
    from controllers.console import bp as console_app_bp
 | 
						|
    from controllers.files import bp as files_bp
 | 
						|
    from controllers.inner_api import bp as inner_api_bp
 | 
						|
    from controllers.service_api import bp as service_api_bp
 | 
						|
    from controllers.web import bp as web_bp
 | 
						|
 | 
						|
    CORS(
 | 
						|
        service_api_bp,
 | 
						|
        allow_headers=["Content-Type", "Authorization", "X-App-Code"],
 | 
						|
        methods=["GET", "PUT", "POST", "DELETE", "OPTIONS", "PATCH"],
 | 
						|
    )
 | 
						|
    app.register_blueprint(service_api_bp)
 | 
						|
 | 
						|
    CORS(
 | 
						|
        web_bp,
 | 
						|
        resources={r"/*": {"origins": dify_config.WEB_API_CORS_ALLOW_ORIGINS}},
 | 
						|
        supports_credentials=True,
 | 
						|
        allow_headers=["Content-Type", "Authorization", "X-App-Code"],
 | 
						|
        methods=["GET", "PUT", "POST", "DELETE", "OPTIONS", "PATCH"],
 | 
						|
        expose_headers=["X-Version", "X-Env"],
 | 
						|
    )
 | 
						|
 | 
						|
    app.register_blueprint(web_bp)
 | 
						|
 | 
						|
    CORS(
 | 
						|
        console_app_bp,
 | 
						|
        resources={r"/*": {"origins": dify_config.CONSOLE_CORS_ALLOW_ORIGINS}},
 | 
						|
        supports_credentials=True,
 | 
						|
        allow_headers=["Content-Type", "Authorization"],
 | 
						|
        methods=["GET", "PUT", "POST", "DELETE", "OPTIONS", "PATCH"],
 | 
						|
        expose_headers=["X-Version", "X-Env"],
 | 
						|
    )
 | 
						|
 | 
						|
    app.register_blueprint(console_app_bp)
 | 
						|
 | 
						|
    CORS(files_bp, allow_headers=["Content-Type"], methods=["GET", "PUT", "POST", "DELETE", "OPTIONS", "PATCH"])
 | 
						|
    app.register_blueprint(files_bp)
 | 
						|
 | 
						|
    app.register_blueprint(inner_api_bp)
 |