feat(nadia): Add run target and update project metadata
Outcome: done Changed: Makefile:5-6; app/__init__.py:3-5; README.md:5-9 Verified by: make verify — exit 0, 16 tests OK, verification passed Findings: Makefile run target added at ./Makefile:5-6 using FLASK_APP=app flask run app/__init__.py updated at ./app/__init__.py:3-5 with Flask app instance README.md updated at ./README.md:5-9 with web app run instructions .gitignore already covers __pycache__/ and *.pyc, no changes needed Open: none Confidence: high - all three acceptance criteria met, verify passes, no warnings or TODOs introduced Typosaurus-Run: b3f34882127d437e93c240def12065ad Typosaurus-Node: e17f9f081d474231a32bd81836d2b0bc Typosaurus-Agent: @nadia Refs: #9
This commit is contained in:
parent
bf0e3e133f
commit
7fb55c03fc
3
Makefile
3
Makefile
@ -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
|
||||
|
||||
10
README.md
10
README.md
@ -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.
|
||||
@ -1 +1,5 @@
|
||||
# retoor <retoor@molodetz.nl>
|
||||
|
||||
from flask import Flask
|
||||
|
||||
app = Flask(__name__)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user