commis
commis copied to clipboard
Bootstrap script
The README now has a step-by-step for going from a Python interpreter to a working Commis install. Automating this in a way that anybody can use is the next obvious step. Possible avenues:
- Shell script. Most portable, but well...shell. Eh.
- Invoke task. Pure-Python, so not shell, and if we're assuming Python as a given...unfortunately Invoke isn't actually out yet. Hopefully soon though...
- Something else?
I've recently looked at @dcramer's logan for doing something like that for a other project. E.g. sentry and mvantellingen/localshop (https://github.com/mvantellingen/localshop) uses it for setting up a Django based project with all the bells and whistles of configuring. Just FYI.
Huh, that's neat. If I'm unable to get Invoke bootstrapped to the point where it's useful for basic Python makefile junk, soon (have a 3 day weekend now...:D) that could be a viable alternative, esp given the hooks to Django.
Yay, I had been hoping someone else would write something exactly like that if I just waited long enough!