-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix (GRAL): #15 add improvements and fix bugs
- Symfony - add database variable setting - fix installation sequence - Efde - Code optimization - Docker - add checks and validation in commands - Common - Fix validation in command_line - Add confirmation to delete directory and file
- Loading branch information
Showing
13 changed files
with
188 additions
and
107 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,31 @@ | ||
#!/usr/bin/env bash | ||
set -euo pipefail | ||
{ | ||
TITLE="$(printf '%.s+' {1..45})\nEFDE | Easy and Fast Developer Environment\nSelect an option:" | ||
|
||
_mod_.main(){ | ||
common.tasks.menu.print_menu "Select an option:" "${efde_props_menu_EFDE[@]}" | ||
} | ||
_mod_.main(){ | ||
common.tasks.menu.print_menu "$TITLE" "${efde_props_menu_MAIN[@]}" | ||
} | ||
|
||
_mod_.config(){ | ||
common.tasks.menu.print_menu "Select an option:" "${efde_props_menu_CONFIG[@]}" | ||
} | ||
_mod_.efde(){ | ||
common.tasks.menu.print_menu "$TITLE" "${efde_props_menu_EFDE[@]}" | ||
} | ||
|
||
_mod_.config_show(){ | ||
efde.tasks.config.show_config | ||
_mod_.config | ||
} | ||
_mod_.config(){ | ||
common.tasks.menu.print_menu "$TITLE" "${efde_props_menu_CONFIG[@]}" | ||
} | ||
|
||
_mod_.tools(){ | ||
common.tasks.menu.print_menu "Select an option:" "${efde_props_menu_TOOLS[@]}" | ||
} | ||
_mod_.config_show(){ | ||
efde.tasks.config.show_config | ||
_mod_.config | ||
} | ||
|
||
_mod_.tools(){ | ||
common.tasks.menu.print_menu "$TITLE" "${efde_props_menu_TOOLS[@]}" | ||
} | ||
|
||
_mod_.comming_soon(){ | ||
efde.tasks.main.comming_soon | ||
_mod_.main | ||
_mod_.coming_soon(){ | ||
efde.tasks.main.coming_soon | ||
_mod_.main | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.