https://github.com/magepsycho/warden-docker-environment-creator
Script to speed up the application (Magento & Symfony) environment creation for warden based development [WIP]
https://github.com/magepsycho/warden-docker-environment-creator
bash docker magento magento2 php shell symfony warden
Last synced: 2 months ago
JSON representation
Script to speed up the application (Magento & Symfony) environment creation for warden based development [WIP]
- Host: GitHub
- URL: https://github.com/magepsycho/warden-docker-environment-creator
- Owner: MagePsycho
- Created: 2021-11-16T13:02:57.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-01-04T07:52:43.000Z (over 4 years ago)
- Last Synced: 2025-03-02T16:26:42.779Z (over 1 year ago)
- Topics: bash, docker, magento, magento2, php, shell, symfony, warden
- Language: Shell
- Homepage:
- Size: 11.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Warden Docker Environment Creator (Magento + Symfony)
This is a bash script to speed up the application (`Magento` & `Symfony`) environment creation for warden based development.
## INSTALL
You can simply download the script file and give the executable permission.
```
curl -0 https://raw.githubusercontent.com/MagePsycho/warden-docker-environment-creator/master/src/wenv-creator.sh -o wenv-creator.sh
chmod +x wenv-creator.sh
```
To make it system wide command
```
mv wenv-creator.sh ~/bin/wenv-creator
#OR
#mv wenv-creator.sh /usr/local/bin/wenv-creator
```
## USAGE
To display help
```
wenv-creator --help
```
To create warden environment for `Magento`
```
wenv-creator --project=... --type=magento2
# Or just
wenv-creator --project=...
```
To create warden environment for `Symfony`
```
wenv-creator --project=... --type=symfony
```
To update the script
```
wenv-creator --self-update
```