GIS-Jonathan
GIS-Jonathan

Reputation: 4647

How to install a web2py site from a github project

I'm interested in installing this site into my web2py installation. I've used the github "download zip" and extracted it to the /web2py/applications/ directory in my web2py install and restarted web2py, but it's not appearing on my admin page.

Looking through the web2py structure I can't see any obvious config files that tell the framework what pages to load.

So how do you install applications that don't come in a .w2p file? Thanks.

Upvotes: 0

Views: 593

Answers (1)

Anthony
Anthony

Reputation: 25536

You have to extract those application folders/files into a folder within your /applications folder. So the structure would look like:

/web2py/applications/myapp/controllers
/web2py/applications/myapp/cron
/web2py/applications/myapp/languages
etc.

Upvotes: 1

Related Questions