๐ŸŒ mirroring test!
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

build: migrate to app engine

+28
+19
.gcloudignore
··· 1 + # This file specifies files that are *not* uploaded to Google Cloud 2 + # using gcloud. It follows the same syntax as .gitignore, with the addition of 3 + # "#!include" directives (which insert the entries of the given .gitignore-style 4 + # file at that point). 5 + # 6 + # For more information, run: 7 + # $ gcloud topic gcloudignore 8 + # 9 + .gcloudignore 10 + # If you would like to upload your .git directory, .gitignore file or files 11 + # from your .gitignore file, remove the corresponding line 12 + # below: 13 + .git 14 + .gitignore 15 + 16 + # Python pycache: 17 + __pycache__/ 18 + # Ignored by the build system 19 + /setup.cfg
+9
app.yaml
··· 1 + runtime: python312 2 + handlers: 3 + - url: / 4 + static_files: index.html 5 + upload: index.html 6 + 7 + - url: /(.*) 8 + static_files: \1 9 + upload: (.*)