Files
StarPunk/app.py
2025-11-18 19:21:31 -07:00

14 lines
243 B
Python

"""
StarPunk - Minimal IndieWeb CMS
Main application entry point
"""
from starpunk import create_app
app = create_app()
if __name__ == '__main__':
# Development server
# For production, use: gunicorn app:app
app.run(debug=True)