Initial commit: Map Flag Placer with Leaflet, Excel import/export, admin boundaries, and photo upload

This commit is contained in:
2026-05-15 16:26:14 +09:00
commit 9bf1db9889
3 changed files with 816 additions and 0 deletions

9
server.py Normal file
View File

@@ -0,0 +1,9 @@
import http.server
import socketserver
PORT = 8000
Handler = http.server.SimpleHTTPRequestHandler
with socketserver.TCPServer(("", PORT), Handler) as httpd:
print(f"Serving at http://localhost:{PORT}")
httpd.serve_forever()