Aptana: exclude files when deploying a project in App Engine

I am using Aptana3 to deploy my python project in AppEngine. There are some huge design files that I want to save inside the project, but I don't want to deploy them in the application. Is there any configuration in Aptana that I can install and it automatically excludes my design files when deployed to the App-engine?

+4
source share
2 answers

You need to configure it in app.yaml. Check here for more details.

+3
source

To skip files, add (in app.yaml) the regex paths to skip:

skip_files:
- ^(.*/)?.*~$
- ^(.*/)?.*\.temp$
- ^example\.file$

, (, .pyc).

+3

All Articles