Is it possible to host a static HTML website on App Engine? And how to make my domain name work with it?
Yes you can host your static files on AppEngine. Just configure your app.yaml-file like the following
- url: /
static_dir: static_files
And put your files in the directory static_files. This way every request is routed to your static files.