mirror of
https://github.com/git-learning-game/oh-my-git.git
synced 2024-11-03 19:04:40 +01:00
33 lines
1.1 KiB
Python
33 lines
1.1 KiB
Python
# Based on:
|
|
# https://stackoverflow.com/a/21957017
|
|
# https://gist.github.com/HaiyangXu/ec88cbdce3cdbac7b8d5
|
|
|
|
from http.server import SimpleHTTPRequestHandler
|
|
import socketserver
|
|
import sys
|
|
|
|
class Handler(SimpleHTTPRequestHandler):
|
|
extensions_map = {
|
|
'': 'application/octet-stream',
|
|
'.css': 'text/css',
|
|
'.html': 'text/html',
|
|
'.jpg': 'image/jpg',
|
|
'.js': 'application/x-javascript',
|
|
'.json': 'application/json',
|
|
'.manifest': 'text/cache-manifest',
|
|
'.png': 'image/png',
|
|
'.wasm': 'application/wasm',
|
|
'.xml': 'application/xml',
|
|
}
|
|
|
|
def end_headers(self):
|
|
self.send_header('Access-Control-Allow-Origin', '*')
|
|
self.send_header('Cross-Origin-Embedder-Policy', 'require-corp')
|
|
self.send_header('Cross-Origin-Opener-Policy', 'same-origin')
|
|
SimpleHTTPRequestHandler.end_headers(self)
|
|
|
|
if __name__ == '__main__':
|
|
port = int(sys.argv[1]) if len(sys.argv) > 1 else 8000
|
|
with socketserver.TCPServer(("localhost", port), Handler) as httpd:
|
|
print("Serving on port", port)
|
|
httpd.serve_forever()
|