Skip to content
Snippets Groups Projects
Commit 5429d14d authored by Bo-Chun Chen's avatar Bo-Chun Chen
Browse files

Fixed typo in SQLALCHEMY_DATABASE_URI

parent ae806598
No related branches found
No related tags found
No related merge requests found
...@@ -3,4 +3,4 @@ DB_USER = 'your_database_username' ...@@ -3,4 +3,4 @@ DB_USER = 'your_database_username'
DB_PW = 'your_database_password' DB_PW = 'your_database_password'
DB_HOST = 'localhost' DB_HOST = 'localhost'
DB_NAME = 'your_database_name' DB_NAME = 'your_database_name'
SQLALCHEMY_DATABASE_URI= 'mysql://{user}:{pw}@{url}/{db}'.format(user=DB_USER,pw=DB_PW,url=DB_URL,db=DB_NAME) SQLALCHEMY_DATABASE_URI= 'mysql://{user}:{pw}@{host}/{db}'.format(user=DB_USER,pw=DB_PW,host=DB_HOST,db=DB_NAME)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment