2026-02-15 01:07:25 -05:00
|
|
|
|
2020-07-05 22:38:14 -04:00
|
|
|
# Discover
|
2021-07-20 20:14:24 -04:00
|
|
|
|
2020-07-05 22:38:14 -04:00
|
|
|
Explore the ERPLibre solution.
|
|
|
|
|
|
|
|
|
|
## Fast installation
|
2021-07-20 20:14:24 -04:00
|
|
|
|
2020-07-05 22:38:14 -04:00
|
|
|
### 1. Clone the project:
|
2021-07-20 20:14:24 -04:00
|
|
|
|
2020-07-05 22:38:14 -04:00
|
|
|
```bash
|
|
|
|
|
git clone https://github.com/ERPLibre/ERPLibre.git
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### 2. Run installation locally:
|
2021-07-20 20:14:24 -04:00
|
|
|
|
2020-07-05 22:38:14 -04:00
|
|
|
```bash
|
|
|
|
|
cd ERPLibre
|
2023-01-02 20:33:57 -05:00
|
|
|
./script/install/install_dev.sh
|
|
|
|
|
./script/install/install_locally_dev.sh
|
2020-07-05 22:38:14 -04:00
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### 3. Run ERPLibre
|
2021-07-20 20:14:24 -04:00
|
|
|
|
2020-07-05 22:38:14 -04:00
|
|
|
```bash
|
|
|
|
|
./run.sh
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## Add repo
|
2021-07-20 20:14:24 -04:00
|
|
|
|
2020-09-30 20:49:35 -04:00
|
|
|
To access a new repo, add your URL to file [source_repo_addons.csv](../source_repo_addons.csv)
|
2020-07-05 22:38:14 -04:00
|
|
|
|
|
|
|
|
Execute script:
|
2021-07-20 20:14:24 -04:00
|
|
|
|
2020-07-05 22:38:14 -04:00
|
|
|
```bash
|
2023-01-02 20:33:57 -05:00
|
|
|
./script/git/git_repo_manifest.py
|
2020-07-22 20:51:57 -04:00
|
|
|
git checkout -b NEW_BRANCH
|
2020-07-05 22:38:14 -04:00
|
|
|
git commit -am "Add new repo"
|
2023-01-02 20:33:57 -05:00
|
|
|
./script/install/install_locally_dev.sh
|
|
|
|
|
./script/poetry/poetry_update.py
|
2020-07-05 22:38:14 -04:00
|
|
|
```
|
2021-07-20 20:14:24 -04:00
|
|
|
|
2020-07-05 22:38:14 -04:00
|
|
|
[Update your repo.](./GIT_REPO.md)
|