Skip to content

Commit

Permalink
fix (doc): developer.md
Browse files Browse the repository at this point in the history
  • Loading branch information
mmaximo33 committed May 12, 2024
2 parents 4effa80 + 2e80a7f commit 01d99be
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
![efde version](https://img.shields.io/badge/status-Active-green.svg)
![efde_lastcommin](https://img.shields.io/github/last-commit/mmaximo33/efde.svg)
![efde_release](https://img.shields.io/github/release/mmaximo33/efde.svg)
![efde_since release](https://img.shields.io/github/commits-since/mmaximo33/efde/2.0.0.svg)
![efde_since release](https://img.shields.io/github/commits-since/mmaximo33/efde/2.1.0.svg)
![efde_since release](https://img.shields.io/github/commits-since/mmaximo33/efde/1.2.0.svg)

![issue-open](https://img.shields.io/github/issues/mmaximo33/efde.svg)
Expand Down
18 changes: 15 additions & 3 deletions docs/developer.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,26 @@ git status
git push origin <issue-new-feature> --force-with-lease
```

### Full developer
To have all the developer features activated modify `bin/efde.sh`

```sh
declare -gA GLOBAL_EFDE_CONFIG=(
...
[EFDE_MODE_DEBUG]=true # Debug Messages
[EFDE_MODE_DEVELOP]=true # MMTodo: Prepared for create tmps
..
)
```

## Admin
### To Develop
```sh
git switch develop
git fetch origin <issue-new-feature>
git merge <issue-new-feature>

# Remember to update the CHANGELOG.md
# Remember to update the docs CHANGELOG.md, README.md
git add CHANGELOG.md
git commit -m "fix (doc): update changelog"

Expand All @@ -63,8 +75,8 @@ git push origin develop --force-with-lease
# See https://semver.org/
git fetch --tags

git tag <major.minor.patch> -m "<major.minor.patch> comments"
# git 1.0.0 -m "1.0.0 comments"
git tag -a <major.minor.patch> -m "<major.minor.patch> comments"
# git tag -a 1.0.0 -m "1.0.0 comments"

git push origin <major.minor.patch>

Expand Down

0 comments on commit 01d99be

Please sign in to comment.