initial checkin

doing my first checkin. initial stuff.
This commit is contained in:
2026-01-12 16:47:40 -05:00
parent 07f9e082a2
commit 140be5aeca
9 changed files with 30178 additions and 0 deletions

26
FlaskHISLaunchpad/app.py Normal file
View File

@@ -0,0 +1,26 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Fri Oct 3 00:59:15 2025
@author: dromisch
"""
from flask import Flask
from route1 import route1 # Import the Blueprint
from flask_sqlalchemy import SQLAlchemy
app = Flask(__name__)
# Register the Blueprint
app.register_blueprint(route1)
# SQLAlchemy Configuration
app.config['SQLALCHEMY_DATABASE_URI'] = 'mssql+pyodbc://hangfire_api:hangfire_123@SCHHISSQL/HISApps?driver=ODBC+Driver+17+for+SQL+Server'
app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = False
# Initialize SQLAlchemy
db = SQLAlchemy(app)
if __name__ == '__main__':
app.run(debug=True)