Created
June 15, 2016 15:14
-
-
Save fhanspach/e81f3e3ebead503a38c2182e9fb3a90d to your computer and use it in GitHub Desktop.
A custom File Watcher for PyCharm to automatically add migrations in django projects
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<TaskOptions> | |
<TaskOptions> | |
<option name="arguments" value="add $FileDir$/$FileName$" /> | |
<option name="checkSyntaxErrors" value="true" /> | |
<option name="description" value="auto add migrations" /> | |
<option name="exitCodeBehavior" value="ERROR" /> | |
<option name="fileExtension" value="py" /> | |
<option name="immediateSync" value="true" /> | |
<option name="name" value="migrations" /> | |
<option name="output" value="" /> | |
<option name="outputFilters"> | |
<array /> | |
</option> | |
<option name="outputFromStdout" value="false" /> | |
<option name="program" value="/usr/bin/git" /> | |
<option name="scopeName" value="migrations" /> | |
<option name="trackOnlyRoot" value="false" /> | |
<option name="workingDir" value="$FileDir$" /> | |
<envs /> | |
</TaskOptions> | |
</TaskOptions> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment