I just noticed that my apps' web-based shell isn't working. I don't see
any errors, there are simply no results of any commands I input in the
lower screen. Not even a simple "print 'hello world'" works. So what
else do I need to check? (P.S. The shell of other apps are working
fine.)
In addition, I would also like to use pycrust as shell because of
autocompletion for my app. How can I import my w2p app models and
controllers into it?
I use the following for general interactive testing but I don't have
access to my app's contollers and models:
import sys
sys.path.append('/home/nrg/Projects/web2py')
from gluon.dal import DAL, Field
db = DAL('sqlite://memory')
What's missing?
TIA
/r
Nik