feat: Make it a web application #10
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