The app.yaml that comes with web2py has a skip_files section, and it should contain, in particular, the following line:
(applications / (admin | examples) /.*) |
You can change it to
(applications / (admins | examples | welcome) /.*) |
So the welcome application is not deployed. You add more applications that you have and do not want to deploy them.
At a minimum you need:
- web2py / gaehandler.py
- web2py / gluon / * (and subfolders, this is web2py)
- web2py / applications / theoneappyouwanttodeploy / * (and subfolders)
source share