db fiks
This commit is contained in:
parent
bd1955e085
commit
910e929394
2
app.py
2
app.py
|
|
@ -911,6 +911,6 @@ def export_excel():
|
|||
|
||||
|
||||
if __name__ == '__main__':
|
||||
port = os.environ.get('PORT', 5000)
|
||||
port = int(os.environ.get('PORT', 5000))
|
||||
debug = os.environ.get('FLASK_DEBUG', '0') == '1'
|
||||
app.run(host='0.0.0.0', port=port, debug=debug)
|
||||
|
|
@ -13,12 +13,17 @@ from pymysql import MySQLError
|
|||
load_dotenv()
|
||||
|
||||
DB_HOST = os.environ.get('DB_HOST', 'localhost')
|
||||
|
||||
DB_PORT = os.environ.get('DB_PORT', '3306')
|
||||
try:
|
||||
DB_PORT = int(DB_PORT)
|
||||
except:
|
||||
DB_PORT = 3306
|
||||
|
||||
DB_USER = os.environ.get('DB_USER', 'root')
|
||||
DB_PASSWORD = os.environ.get('DB_PASSWORD', '')
|
||||
DB_NAME = os.environ.get('DB_NAME', 'deteksi_pmk')
|
||||
|
||||
|
||||
def create_database():
|
||||
"""Create database if not exists"""
|
||||
try:
|
||||
|
|
|
|||
Loading…
Reference in New Issue