Skip to content

Instantly share code, notes, and snippets.

@SiddheshKukade
Created June 1, 2023 04:14
Show Gist options
  • Save SiddheshKukade/7bd091d32dfec43cf9b5270fc8593a99 to your computer and use it in GitHub Desktop.
Save SiddheshKukade/7bd091d32dfec43cf9b5270fc8593a99 to your computer and use it in GitHub Desktop.
<html>
<head>
<title>Hello, world!</title>
<link rel="stylesheet" type="text/css" href="/css/style.css">
</head>
<body>
<h1>Hello, world!</h1>
<p>
This is a simple static HTML file that will be served from Google App
Engine.
</p>
</body>
</html>
runtime: python27
api_version: 1
threadsafe: true
handlers:
- url: /
static_files: www/index.html
upload: www/index.html
- url: /(.*)
static_files: www/\1
upload: www/(.*)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment