mirror of
https://github.com/alexkay/spek.git
synced 2025-04-13 15:27:24 +03:00
Add a skeleton app-engine website
This commit is contained in:
parent
60324c1750
commit
80b2a25f02
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,6 +1,7 @@
|
||||
*~
|
||||
aclocal.m4
|
||||
autom4te.cache
|
||||
*.bz2
|
||||
compile
|
||||
config.*
|
||||
configure
|
||||
|
25
web/app.yaml
Normal file
25
web/app.yaml
Normal file
@ -0,0 +1,25 @@
|
||||
application: spek-project
|
||||
version: 1
|
||||
runtime: python
|
||||
api_version: 1
|
||||
|
||||
handlers:
|
||||
- url: /favicon.ico
|
||||
static_files: favicon.ico
|
||||
upload: favicon.ico
|
||||
mime_type: vnd.microsoft.icon
|
||||
|
||||
- url: /robots.txt
|
||||
static_files: robots.txt
|
||||
upload: robots.txt
|
||||
mime_type: text/plain
|
||||
|
||||
- url: /
|
||||
static_files: index.html
|
||||
upload: index.html
|
||||
mime_type: text/html
|
||||
|
||||
- url: /(.*).bz2
|
||||
static_files: \1.bz2
|
||||
upload: (.*).bz2
|
||||
mime_type: application/x-bzip
|
BIN
web/favicon.ico
Normal file
BIN
web/favicon.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 17 KiB |
1
web/index.html
Normal file
1
web/index.html
Normal file
@ -0,0 +1 @@
|
||||
Hello world!
|
2
web/robots.txt
Normal file
2
web/robots.txt
Normal file
@ -0,0 +1,2 @@
|
||||
User-agent: *
|
||||
Disallow:
|
3
web/upload
Executable file
3
web/upload
Executable file
@ -0,0 +1,3 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
/opt/google-appengine/appcfg.py --email=alexander@kojevnikov.com update `dirname $0`
|
Loading…
x
Reference in New Issue
Block a user