How to use static files with django nonrel

后端 未结 3 2175
醉酒成梦
醉酒成梦 2021-02-08 15:37

I\'m trying to use the Django nonrel project for google app engine. I setup the test project as described here. I added a new folder to the project named \"static\" for my stati

相关标签:
3条回答
  • 2021-02-08 15:53

    Well i just figured it out. Just use static_dir line before the main.py. So the app.yaml should look like this;

    application: test
    version: 1
    runtime: python
    api_version: 1
    
    builtins:
    - remote_api: on
    
    inbound_services:
    - warmup
    
    handlers:
    - url: /_ah/queue/deferred
      script: djangoappengine/deferred/handler.py
      login: admin
    
    - url: /_ah/stats/.*
      script: djangoappengine/appstats/ui.py
    
    - url: /media/admin
      static_dir: django/contrib/admin/media
      expiration: '0'
    
    - url: /static
      static_dir: static
    
    - url: /.*
      script: djangoappengine/main/main.py
    
    0 讨论(0)
  • 2021-02-08 16:02

    app.yaml have nothing to do with Django, but it does configures App Engine front-end. The answer depends on whether you want to serve static files with Django or the front-end (which is, well, cheaper and faster).

    If you just "added" your - url: /static mapping to the end, move it before the /.* wildcard. As all mappings processed from top to bottom — first matching mapping wins.

    0 讨论(0)
  • 2021-02-08 16:10

    As people already pointed out, you should put your static_dir directive before /.* pattern

    However, that is not the only thing you should know about.

    By putting this directive into app.yaml, you make AppEngine webserver (whether it's development or production server) handle the path /static, and you need all the static files to be inside static directory. This means you will have to run python manage.py collectstatic every time you change anything in your static files (especially if you have/use apps with static files -- like, say, admin or django-tinymce) just to test these changes on local server

    So how to avoid that? By default staticfiles provides helpers to serve these files on development server without running collectstatic every time, the problem is the direcotry name conflict described in the previous paragraph: Django can't catch requests to your static files path, as they are handled by appserver. You can resolve it by using different paths on development and production server:

    # in settings.py
    if DEBUG: 
        STATIC_URL = '/devstatic/'
    else:
        STATIC_URL = '/static/'
    

    (djangoappengine sets DEBUG to True on development server). You can leave ADMIN_MEDIA_PREFIX = '/static/admin/', but remember to run collectstatic at least once before using admin

    Of course remember to use {{ STATIC_URL }}path/to.css in templates instead of /static/path/to.css

    Oh, and I assume that you distinguish the directory for original static files you work on and the directory where static files should be collected. I use this in my settings.py:

    STATIC_ROOT = os.path.join(os.path.dirname(__file__), 'sitestatic')
    STATICFILES_DIRS = (
        os.path.join(os.path.dirname(__file__), 'static'),
    )
    

    This means: you put your static fiels into static dir (and into your apps' static dirs), collectstatic collects them into sitestatic dir. Appropriate app.yaml directive is

    - url: /static
      static_dir: sitestatic
    

    Finally, you can configure app.yaml to ignore static and media directories when uploading your app, since all the static files will be collected into and served from sitestatic. However, you should set this only while uploading (otherwise these files will not be available in debug server)

    0 讨论(0)
提交回复
热议问题