[PR #18871] app.py #31627

Open
opened 2026-01-31 09:48:30 +00:00 by claunia · 0 comments
Owner

Original Pull Request: https://github.com/microsoft/terminal/pull/18871

State: closed
Merged: No


from flask import Flask

app = Flask(name)

@app.route('/')
def home():
return 'مرحبا بك في خادم Flask المحلي!'

if name == 'main':
app.run(debug=True)

Summary of the Pull Request

References and Relevant Issues

Detailed Description of the Pull Request / Additional comments

Validation Steps Performed

PR Checklist

  • Closes #xxx
  • Tests added/passed
  • Documentation updated
    • If checked, please file a pull request on our docs repo and link it here: #xxx
  • Schema updated (if necessary)
**Original Pull Request:** https://github.com/microsoft/terminal/pull/18871 **State:** closed **Merged:** No --- from flask import Flask app = Flask(__name__) @app.route('/') def home(): return 'مرحبا بك في خادم Flask المحلي!' if __name__ == '__main__': app.run(debug=True) ## Summary of the Pull Request ## References and Relevant Issues ## Detailed Description of the Pull Request / Additional comments ## Validation Steps Performed ## PR Checklist - [ ] Closes #xxx - [ ] Tests added/passed - [ ] Documentation updated - If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/terminal) and link it here: #xxx - [ ] Schema updated (if necessary)
claunia added the pull-request label 2026-01-31 09:48:30 +00:00
Sign in to join this conversation.
No Label pull-request
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/terminal#31627