[UPD] makefile IDE
This commit is contained in:
parent
07a19e0632
commit
391c73bf39
2 changed files with 32 additions and 0 deletions
12
Makefile
12
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
|
||||
|
||||
|
|
|
|||
20
README.md
20
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).
|
||||
|
|
|
|||
Loading…
Reference in a new issue