Commands¶
launch¶
Name¶
launch — launch a simple server
Synopsis¶
launch [ -baddress | --bind=address ] [ -c | --compile ] [ -d | --debug ][ -eencoding | --encoding=encoding ] [ -f | --force ] [ -h | --help ]
[ -pport | --port=port ] [ -s | --static ] directory path
Description¶
This command launches a simple WSGI server (or, with launch --compile
, pre-compiles all Python source code to byte code) for the webapp in the specified directory on the specified URL path. Run launch --help
for an explanation of what each option does.
install-static¶
Name¶
install-static — install static files from webapp
Synopsis¶
install-static
[ -h
| --help
]
[ -m
| --move
]
[ -n
| --no-preserve
]
source target
Description¶
This command copies (or moves, if so specified) the static files found in the source directory to the target one. Run install-static --help
for an explanation of what each option does.