-
Notifications
You must be signed in to change notification settings - Fork 294
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🚚 Add
doit
wrapper scripts to run from the IDE (#4996)
Add some wrapper scripts for `doit`, so that the common commands can be run from the IDE by right-clicking. **How to test** In PyCharm, go to `build-tools/doit`, right-click on `frontend`, and click `Run`.
- Loading branch information
Showing
4 changed files
with
16 additions
and
1 deletion.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/bin/bash | ||
# Run the doit backend script immediately | ||
scriptdir=$(cd $(dirname $0) && pwd) | ||
cd $scriptdir/../.. | ||
exec doit run backend |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/bin/bash | ||
# Run the doit devdb script immediately | ||
scriptdir=$(cd $(dirname $0) && pwd) | ||
cd $scriptdir/../.. | ||
exec doit run devdb |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/bin/bash | ||
# Run the doit frontend script immediately | ||
scriptdir=$(cd $(dirname $0) && pwd) | ||
cd $scriptdir/../.. | ||
exec doit run frontend |
This file contains 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