[컴][웹] 구글 앱 엔진에서 static file 사용하기–image, js, css 등

How to make a link to the static file such as image, js file, etc.

 

google app engine 에서 static file (image, css, js 같은 파일들) 을 설정하는 방법.

언어 : python 사용

static file 에 대한 설정은 따로 해 줘야 한다. 이 글은 아래 글을 기초로 작성되었다.

https://developers.google.com/appengine/docs/python/gettingstarted/staticfiles

 

app.yaml 을 수정해서 static file 에 대한 처리를 해야 한다.

아래에 보이는 것처럼, static_dir: 을 사용하면 된다.

 

app.yaml

application: helloworld
version: 1
runtime: python
api_version: 1

handlers:
- url: /js
  static_dir: js

- url: /.*
  script: helloworld.py

댓글 없음:

댓글 쓰기