added more aliases for pyramid

This commit is contained in:
Dewayne Richardson 2012-05-25 11:12:00 -06:00
commit a9bcabc2cc

View file

@ -1,2 +1,13 @@
alias pdr="pserve development.ini --reload""
alias ppr="pserve production.ini --reload""
# Scaffolding Aliases
#Available scaffolds:
# alchemy: Pyramid SQLAlchemy project using url dispatch
alias pca="pcreate -s alchemy $*"
# pyramid_mongodb: pyramid MongoDB project
alias pcm="pcreate -s pyramid_mongodb $*"
# starter: Pyramid starter project
alias pcs="pcreate -s starter $*"
# zodb: Pyramid ZODB project using traversal
alias pcz="pcreate -s zodb $*"