Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

yaml in Google App Engine with index.html

I'm building a website, I have no index.py how to I ensure index.html comes up when I type in my http://localhost:8080/?

I have in yaml

- url: /
  static_files: static/HTML
  upload: static/HTML/index.html

but this does not seem to work.

like image 289
disruptive Avatar asked Jul 18 '11 17:07

disruptive


1 Answers

Your static_files directive needs to include the full path to the file:

static_files: static/HTML/index.html
like image 56
Wooble Avatar answered Oct 23 '22 05:10

Wooble