1

With PyCharm projects there's an .idea directory that holds various project configuration files. The answer to this question points to a FAQ that says the IML file should be under version control. But...

For a Google App Engine project, there are settings such as the path to the GAE SDK that are local-machine specific. Keeping the IML file under version control "breaks the build" every time. On the other hand, there are genuine project-related settings in that file.

Is there a workaround?

Community
  • 1
  • 1
I. J. Kennedy
  • 24,725
  • 16
  • 62
  • 87
  • 1
    Once Path Variables are supported, things should become better: http://youtrack.jetbrains.com/issue/PY-6203. – CrazyCoder Jan 22 '13 at 18:53

1 Answers1

1

You could put the GAE SDK in the same directory on all the machines. This only resolves the problem with sdkFolder option.

Jernej Jerin
  • 3,179
  • 9
  • 37
  • 53