import sys import os INTERP = os.path.join(os.environ['HOME'], 'virtualenv', 'domains', 'financeiro.grupokapital.com.br', 'public_html', '3.9', 'bin', 'python3') if sys.executable != INTERP: os.execl(INTERP, INTERP, *sys.argv) sys.path.insert(0, os.path.dirname(__file__)) from app import app as application application.config['DEBUG'] = False