Skip to content

Instantly share code, notes, and snippets.

View drugoi's full-sized avatar
🏠
Working from home

Nikita Bayev drugoi

🏠
Working from home
  • Bereke Bank
  • Almaty, Kazakhstan
View GitHub Profile
@drugoi
drugoi / serve.py
Created October 9, 2017 09:36 — forked from chrisbolin/serve.py
Python SimpleHTTPServer for Static Serving (React / Angular / Ember) in HTML5 mode (a la mod_rewrite)
'''
Taken from:
http://stackoverflow.com/users/1074592/fakerainbrigand
http://stackoverflow.com/questions/15401815/python-simplehttpserver
'''
import SimpleHTTPServer, SocketServer
import urlparse, os
PORT = 3000