Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000| ######################### | |
| # .gitignore file for Xcode4 and Xcode5 Source projects | |
| # | |
| # Apple bugs, waiting for Apple to fix/respond: | |
| # | |
| # 15564624 - what does the xccheckout file in Xcode5 do? Where's the documentation? | |
| # | |
| # Version 2.6 | |
| # For latest version, see: http://stackoverflow.com/questions/49478/git-ignore-file-for-xcode-projects | |
| # |
| From 2fb8432982b7e8ffc4c05f912f47cd9ca7261427 Mon Sep 17 00:00:00 2001 | |
| From: Xavier Shay <xavier@rhnh.net> | |
| Date: Sun, 1 May 2011 10:25:18 +1000 | |
| Subject: [PATCH] Disable some edge cases in requiring to speed it up. | |
| --- | |
| load.c | 1 + | |
| 1 files changed, 1 insertions(+), 0 deletions(-) | |
| diff --git a/load.c b/load.c |
| # Rackup file for serving up a static site from a "public" directory | |
| # | |
| # Useful for chucking a static site on Heroku | |
| class IndexRewriter | |
| def initialize(app) @app = app end | |
| def call(env) | |
| env["PATH_INFO"].gsub! /\/$/, '/index.html' | |
| @app.call(env) | |
| end |