Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/carlosv2/bash-dev-tools
Collection of tools to develop
https://github.com/carlosv2/bash-dev-tools
Last synced: 2 months ago
JSON representation
Collection of tools to develop
- Host: GitHub
- URL: https://github.com/carlosv2/bash-dev-tools
- Owner: carlosV2
- License: mit
- Created: 2014-09-03T10:52:36.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2017-02-24T10:46:23.000Z (almost 8 years ago)
- Last Synced: 2023-08-09T10:24:34.705Z (over 1 year ago)
- Language: Shell
- Size: 41 KB
- Stars: 2
- Watchers: 2
- Forks: 2
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Install
1. Clone this repository to your home directory.
```sh
git clone https://github.com/carlosV2/bash-dev-tools.git .bash-dev-tools
```2. Modify your `~/.bashrc` and add to the end
```sh
# some other config in .bashrc# bash dev tools configurations
# Enables the alias
ENABLE_ALIAS=true# Enables the git tools
ENABLE_GIT=true# Enables the symfony tools
ENABLE_SYMFONY=true# Enables the symfony tools
ENABLE_BEHAT=true# Enables the symfony tools
ENABLE_PHPSPEC=true# Enables the vagrant tools
ENABLE_VAGRANT=true# Specify the base path
# For example: /home//.bash-dev-tools/
BASE_PATH=""# Source the bash dev tools script
source "${BASE_PATH}devtools.sh"
```**Enjoy!**