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?
You need to configure it in app.yaml. Check here for more details.
To skip files, add (in app.yaml) the regex paths to skip:
skip_files: - ^(.*/)?.*~$ - ^(.*/)?.*\.temp$ - ^example\.file$
, (, .pyc).
.pyc