[UPD] makefile IDE

This commit is contained in:
Mathieu Benoit 2024-09-27 01:44:52 -04:00
parent 07a19e0632
commit 391c73bf39
2 changed files with 32 additions and 0 deletions

View file

@ -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

View file

@ -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).