livraison avec api à corriger

This commit is contained in:
2022-06-09 21:25:53 +02:00
parent e3d237ab91
commit e3c55b477f
3 changed files with 166 additions and 0 deletions

11
config.py Normal file
View File

@@ -0,0 +1,11 @@
MYSQL_HOST = "172.18.0.3"
MYSQL_PORT = 3306
MYSQL_USER = "api-python"
MYSQL_PWD = "api-python"
MYSQL_DB = "api-python"
SQLALCHEMY_DATABASE_URI = "mysql+pymysql://{}:{}@{}:{}/{}".format(MYSQL_USER,
MYSQL_PWD,
MYSQL_HOST,
MYSQL_PORT,
MYSQL_DB)