2019-10-08 20:06:26 +02:00
|
|
|
"""Serve QMK documentation locally
|
|
|
|
"""
|
|
|
|
import http.server
|
2019-11-30 00:45:22 +01:00
|
|
|
import os
|
2019-10-08 20:06:26 +02:00
|
|
|
|
|
|
|
from milc import cli
|
|
|
|
|
|
|
|
|
|
|
|
@cli.argument('-p', '--port', default=8936, type=int, help='Port number to use.')
|
2020-03-23 21:59:44 +01:00
|
|
|
@cli.subcommand('Run a local webserver for QMK documentation.', hidden=False if cli.config.user.developer else True)
|
2019-10-08 20:06:26 +02:00
|
|
|
def docs(cli):
|
|
|
|
"""Spin up a local HTTPServer instance for the QMK docs.
|
|
|
|
"""
|
2019-11-30 00:45:22 +01:00
|
|
|
os.chdir('docs')
|
|
|
|
|
|
|
|
with http.server.HTTPServer(('', cli.config.docs.port), http.server.SimpleHTTPRequestHandler) as httpd:
|
2019-10-08 20:06:26 +02:00
|
|
|
cli.log.info("Serving QMK docs at http://localhost:%d/", cli.config.docs.port)
|
|
|
|
cli.log.info("Press Control+C to exit.")
|
|
|
|
|
2019-10-12 06:41:58 +02:00
|
|
|
try:
|
|
|
|
httpd.serve_forever()
|
|
|
|
except KeyboardInterrupt:
|
|
|
|
cli.log.info("Stopping HTTP server...")
|
|
|
|
finally:
|
|
|
|
httpd.shutdown()
|