payment/payment_backend/config/db.py

8 lines
175 B
Python
Raw Permalink Normal View History

config = {
'user': 'your_mysql_username',
'password': 'your_mysql_password',
'host': 'localhost',
'database': 'your_database_name',
'autocommit': False,
}