16 lines
338 B
Python
16 lines
338 B
Python
import pytest
|
|
|
|
pytest.skip("Legacy manual server script (not a pytest suite).", allow_module_level=True)
|
|
|
|
from microdot import Microdot
|
|
from src.profile import profile_app
|
|
|
|
app = Microdot()
|
|
|
|
@app.route('/')
|
|
async def index(request):
|
|
return 'Hello, world!'
|
|
|
|
app.mount(profile_app, url_prefix="/profile")
|
|
|
|
app.run(port=8080, debug=True) |