14 lines
243 B
Python
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)
|