17 lines
No EOL
400 B
Python
17 lines
No EOL
400 B
Python
from os.path import abspath
|
|
from os import getcwd
|
|
from pathlib import Path
|
|
|
|
from bottle import route, run, static_file
|
|
|
|
@route("/")
|
|
def index():
|
|
return "Hello"
|
|
|
|
@route("/static/<filename>")
|
|
def static_path(filename):
|
|
template_path = abspath(getcwd()) / Path("tests/mock_server/templates")
|
|
return static_file(filename, root=template_path)
|
|
|
|
def start():
|
|
run(host='localhost', port=8080) |