that initial commit

This commit is contained in:
2025-11-18 19:21:31 -07:00
commit a68fd570c7
69 changed files with 31070 additions and 0 deletions

13
app.py Normal file
View File

@@ -0,0 +1,13 @@
"""
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)