from gluon.admin import app_compile
errs = app_compile('myapp',request)
if errs:
response.flash = 'There were errors'
else:
response.flash = 'Application compiled'On Oct 18, 3:58 pm, VP <[email protected]> wrote: > Is there a way to compile apps manually (instead of through the admin > interface)? > > Thanks.

