Project structure for Google App Engine

后端 未结 6 833
走了就别回头了
走了就别回头了 2020-12-12 09:06

I started an application in Google App Engine right when it came out, to play with the technology and work on a pet project that I had been thinking about for a long time bu

6条回答
  •  孤城傲影
    2020-12-12 09:42

    I like webpy so I've adopted it as templating framework on Google App Engine.
    My package folders are typically organized like this:

    app.yaml
    application.py
    index.yaml
    /app
       /config
       /controllers
       /db
       /lib
       /models
       /static
            /docs
            /images
            /javascripts
            /stylesheets
       test/
       utility/
       views/
    

    Here is an example.

提交回复
热议问题