You've already forked Mailu
mirror of
https://github.com/Mailu/Mailu.git
synced 2025-07-01 00:44:57 +02:00
11 lines
174 B
Python
11 lines
174 B
Python
from freeposte import app, db
|
|
|
|
|
|
# Initialize the database if required (first launch)
|
|
db.create_all()
|
|
db.session.commit()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
app.run(debug=True)
|