mirror of
https://github.com/Sylius/Sylius.git
synced 2026-07-14 17:10:53 +00:00
26 lines
464 B
Bash
26 lines
464 B
Bash
#!/bin/bash
|
|
|
|
# Shell provisioner
|
|
MODULE_PATH='/vagrant/shell_provisioner/module'
|
|
CONFIG_PATH='/vagrant/shell_provisioner/config'
|
|
|
|
# IP for the vagrant VM
|
|
GUEST_IP='10.0.0.200'
|
|
|
|
#Config
|
|
APP_DOMAIN='sylius.dev'
|
|
APP_DBNAME='sylius'
|
|
|
|
# Adding an entry here executes the corresponding .sh file in MODULE_PATH
|
|
DEPENDENCIES=(
|
|
debian
|
|
tools
|
|
php
|
|
mysql
|
|
apache
|
|
sylius
|
|
)
|
|
|
|
for MODULE in ${DEPENDENCIES[@]}; do
|
|
source ${MODULE_PATH}/${MODULE}.sh
|
|
done
|