Add podgrab featureset

This commit is contained in:
Cody Cook 2025-06-16 22:55:39 -07:00
commit 233dd5b5c0
33 changed files with 2315 additions and 125 deletions

View file

@ -25,10 +25,8 @@ def main():
# Create the Flask app
app = create_app()
# Create database tables if they don't exist
with app.app_context():
db.create_all()
print("Database tables created successfully!")
# Database tables are created in application.py
print("Database tables created successfully!")
# Get port from environment variable or use default
port = int(os.environ.get("PORT", 5000))