feat: Make it a web application #10

Merged
typosaurus merged 6 commits from typosaurus/9-make-it-a-web-application into main 2026-07-26 21:51:20 +02:00
3 changed files with 16 additions and 1 deletions
Showing only changes of commit 7fb55c03fc - Show all commits

View File

@ -1,2 +1,5 @@
verify:
@python3 -m compileall -q src tests && python3 -m unittest discover -s tests -q && echo "verification passed"
run:
FLASK_APP=app flask run

View File

@ -1,3 +1,11 @@
# typosaurus-sandbox
Sandbox for Typosaurus end-to-end verification
Sandbox for Typosaurus end-to-end verification
## Running the web app
```bash
make run
```
The development server starts at http://127.0.0.1:5000.

View File

@ -1 +1,5 @@
# retoor <retoor@molodetz.nl>
from flask import Flask
app = Flask(__name__)