Cloud computing coursework:Saas 图片社交网站
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 

16 lignes
393 B

from phshare import create_app
# app = create_app()
# if __name__ == "__main__":
# app.run("127.0.0.1",3389,debug=True)
import os
from dotenv import load_dotenv
dotenv_path = os.path.join(os.path.dirname(__file__), '.env')
if os.path.exists(dotenv_path):
load_dotenv(dotenv_path)
app = create_app('production')
if __name__ == "__main__":
app.run("127.0.0.1", 3389, debug=True)