I hereby claim:
- I am btubbs on github.
- I am btubbs (https://keybase.io/btubbs) on keybase.
- I have a public key ASCU43mYG7sqfx0RVxoJ8gjyz87lKgcisv37yaefD9AU2wo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| .PHONY: dbsetup clean_files clean_rabbit clean migrate dev js | |
| # Both Python and Node programs will be put here. | |
| BIN=$(shell dirname `which python`) | |
| STATIC_DIR=mettle/static | |
| JSX_DIR=$(STATIC_DIR)/jsx | |
| # Our React components have dependencies on each other. This ordering is important. | |
| JSX_MODULES=jobs targets runs pipelines services app | |
| JSX_TARGETS=$(foreach module,$(JSX_MODULES),$(JSX_DIR)/$(module).js) |
| # -*- coding: utf-8 -*- | |
| """ | |
| webzeug.py | |
| Adapted from Armin Ronacher's "webpylike". | |
| See https://github.com/mitsuhiko/werkzeug/blob/master/examples/webpylike/webpylike.py | |
| With this, an application can look like this: | |
| from webzeug import App, Request, Response, View |