мои файлы каталогов является:Google App инженер, я не могу найти свой CSS и JS файлы конфигурации static_dir
helloboard:
|--bower_components
| |--jquery
| |--lotsof.js
|--css
| |--app.css
|--js
| |--app.js
| |--someother.js
|--app.yaml
|--index.html
|--main.py
Мой app.yaml является:
application: helloboard
version: 1
runtime: python27
api_version: 1
threadsafe: yes
handlers:
- url: /.*
script: main.app
- url: /css/*
static_dir: css
expiration: "364d"
- url: /js
static_dir: js
- url: /bower_components
static_dir: bower_components
, когда я посещаю http://localhost:8080/css/app.css It по-прежнему 404 не найти ошибку. Я читал https://cloud.google.com/appengine/docs/python/config/appconfig Но все еще не знаю, где моя ошибка.