Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Aptana: Exclude files when deploying a project to App Engine

I'm using Aptana3 to deploy my python project to AppEngine. There are some huge design files that I want to keep inside the project but don't want to deploy to app-engine. Is there any configuration in Aptana that I can set and it automatically excludes my design files when deploying to App-engine?

like image 529
Pooya Avatar asked Dec 17 '13 22:12

Pooya


2 Answers

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

like image 173
Sandeep Avatar answered Sep 28 '22 01:09

Sandeep


To skip files add (in app.yaml) regular expression paths to skip:

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

There are a bunch of things skipped by default (e.g. .pyc files).

like image 44
James Avatar answered Sep 28 '22 01:09

James