I am new with python, and this question is about access a folder inside of the root.
With this url http://localhost:8080/ I can access the root folder of the application. But if i create a subfolder inside of engineapp how can i access it by url?
In my case i am trying http://localhost/folder:8080 but apparently this doesn’t work. What is the correct way to do that?
And I should copy the app.yaml and index.yaml from the engineapp to the new subfolder?
You need to map a path into a handler or a static handler.
Handler is for generating content using code while static handler is for static content (like scripts, images, css, etc).