sudo apt-get install python python-pip
sudo pip install awscli
aws configure
| # ~/.zshrc file for zsh interactive shells. | |
| # see /usr/share/doc/zsh/examples/zshrc for examples | |
| setopt autocd # change directory just by typing its name | |
| #setopt correct # auto correct mistakes | |
| setopt interactivecomments # allow comments in interactive mode | |
| setopt magicequalsubst # enable filename expansion for arguments of the form ‘anything=expression’ | |
| setopt nonomatch # hide error message if there is no match for the pattern | |
| setopt notify # report the status of background jobs immediately | |
| setopt numericglobsort # sort filenames numerically when it makes sense |
| version: '2' | |
| services: | |
| mariadb: | |
| image: mariadb | |
| volumes: | |
| - /srv/Configs/Databases/Moodle:/var/lib/mysql | |
| environment: | |
| - MYSQL_ROOT_PASSWORD=moodle | |
| - MYSQL_ROOT_USER=root | |
| - MYSQL_DATABASE=moodle |
Create the following folder structure in your root project directory: .ebextensions/supervisor
Place the supervisor.config under .ebextensions/
Place the setup.sh under .ebextensions/supervisor/
Run "chmod +x .ebextensions/supervisor/setup.sh"
Place the supervisord.conf under .ebextensions/supervisor/
Create the following folder structure in your root project directory: .ebextensions/supervisor
Place the supervisor.config under .ebextensions/
Place the setup.sh under .ebextensions/supervisor/
Run "chmod +x .ebextensions/supervisor/setup.sh"
Place the supervisord.conf under .ebextensions/supervisor/