1
0
Fork 0
mirror of synced 2024-06-28 02:50:24 +12:00
ArchiveBox/tests/mock_server/server.py

19 lines
468 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")
response = static_file(filename, root=template_path)
response.set_header("Content-Type", "")
return response
def start():
run(host='localhost', port=8080)