From 391c73bf3907af48a3f013f5b90a2bf1cc16aaa8 Mon Sep 17 00:00:00 2001 From: Mathieu Benoit Date: Fri, 27 Sep 2024 01:44:52 -0400 Subject: [PATCH] [UPD] makefile IDE --- Makefile | 12 ++++++++++++ README.md | 20 ++++++++++++++++++++ 2 files changed, 32 insertions(+) diff --git a/Makefile b/Makefile index 5c39978..b01296f 100644 --- a/Makefile +++ b/Makefile @@ -1196,3 +1196,15 @@ doc_markdown: .PHONY: clear_cache clear_cache: rm -rf cache artifacts .coverage coverage.json + +####### +# IDE # +####### +.PHONY: pycharm_open +pycharm_open: + ~/.local/share/JetBrains/Toolbox/scripts/pycharm . + +.PHONY: pycharm_configure +pycharm_configure: + ./script/ide/pycharm_configuration.py --init + diff --git a/README.md b/README.md index 10168bd..c4bfe08 100644 --- a/README.md +++ b/README.md @@ -75,6 +75,26 @@ For more information, read [Docker guide](./docker/README.md). [Guide to run ERPLibre in development environment](./doc/DEVELOPMENT.md). +### Pycharm + +First open + +```bash +make pycharm_open +``` + +Close it, and configure + +```bash +make pycharm_configure +``` + +Open it + +```bash +make pycharm_open +``` + # Execution [Guide to run ERPLibre with different case](./doc/RUN.md).