├── README.md ├── boot.sh ├── files └── IntelliJIdea14 │ └── codestyles │ └── Sandstorm.xml ├── handlers └── handlers.yml ├── hosts ├── projects ├── _typo3flow.yml ├── flowbase.yml └── neosbase.yml ├── restart-daemons.sh ├── restart.yml ├── run-nosudo.sh ├── run.sh ├── tasks ├── _base.yml ├── configureShell.yml ├── dmg-install.yml ├── etchosts.yml ├── git-placeholder-checkout.yml ├── git.yml ├── golang-internal.yml ├── golang.yml ├── mysql.yml ├── nginx.yml ├── nodejs.yml ├── oh-my-zsh.yml ├── php.yml ├── ruby.yml └── vhost.yml ├── templates ├── git │ ├── SANDSTORM_INSTALL_INSTRUCTIONS.j2 │ └── gitignore_global ├── mysql │ └── mysql-service.plist ├── nginx │ ├── fastcgi_params.j2 │ ├── nginx-service.plist │ ├── nginx-vhost.j2 │ └── nginx.conf.j2 ├── oh-my-zsh │ └── zshrc-template.j2 ├── php │ ├── php-fpm.conf.j2 │ ├── php-service.plist │ └── php.ini.j2 ├── ssh │ └── commonConfig └── typo3flow │ ├── BehatSettings.yaml.j2 │ └── Settings.yaml.j2 └── yourlocalusername.yml /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm/macosx-with-ansible/HEAD/README.md -------------------------------------------------------------------------------- /boot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm/macosx-with-ansible/HEAD/boot.sh -------------------------------------------------------------------------------- /files/IntelliJIdea14/codestyles/Sandstorm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm/macosx-with-ansible/HEAD/files/IntelliJIdea14/codestyles/Sandstorm.xml -------------------------------------------------------------------------------- /handlers/handlers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm/macosx-with-ansible/HEAD/handlers/handlers.yml -------------------------------------------------------------------------------- /hosts: -------------------------------------------------------------------------------- 1 | localhost ansible_connection=local -------------------------------------------------------------------------------- /projects/_typo3flow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm/macosx-with-ansible/HEAD/projects/_typo3flow.yml -------------------------------------------------------------------------------- /projects/flowbase.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm/macosx-with-ansible/HEAD/projects/flowbase.yml -------------------------------------------------------------------------------- /projects/neosbase.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm/macosx-with-ansible/HEAD/projects/neosbase.yml -------------------------------------------------------------------------------- /restart-daemons.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm/macosx-with-ansible/HEAD/restart-daemons.sh -------------------------------------------------------------------------------- /restart.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm/macosx-with-ansible/HEAD/restart.yml -------------------------------------------------------------------------------- /run-nosudo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm/macosx-with-ansible/HEAD/run-nosudo.sh -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm/macosx-with-ansible/HEAD/run.sh -------------------------------------------------------------------------------- /tasks/_base.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm/macosx-with-ansible/HEAD/tasks/_base.yml -------------------------------------------------------------------------------- /tasks/configureShell.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm/macosx-with-ansible/HEAD/tasks/configureShell.yml -------------------------------------------------------------------------------- /tasks/dmg-install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm/macosx-with-ansible/HEAD/tasks/dmg-install.yml -------------------------------------------------------------------------------- /tasks/etchosts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm/macosx-with-ansible/HEAD/tasks/etchosts.yml -------------------------------------------------------------------------------- /tasks/git-placeholder-checkout.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm/macosx-with-ansible/HEAD/tasks/git-placeholder-checkout.yml -------------------------------------------------------------------------------- /tasks/git.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm/macosx-with-ansible/HEAD/tasks/git.yml -------------------------------------------------------------------------------- /tasks/golang-internal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm/macosx-with-ansible/HEAD/tasks/golang-internal.yml -------------------------------------------------------------------------------- /tasks/golang.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm/macosx-with-ansible/HEAD/tasks/golang.yml -------------------------------------------------------------------------------- /tasks/mysql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm/macosx-with-ansible/HEAD/tasks/mysql.yml -------------------------------------------------------------------------------- /tasks/nginx.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm/macosx-with-ansible/HEAD/tasks/nginx.yml -------------------------------------------------------------------------------- /tasks/nodejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm/macosx-with-ansible/HEAD/tasks/nodejs.yml -------------------------------------------------------------------------------- /tasks/oh-my-zsh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm/macosx-with-ansible/HEAD/tasks/oh-my-zsh.yml -------------------------------------------------------------------------------- /tasks/php.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm/macosx-with-ansible/HEAD/tasks/php.yml -------------------------------------------------------------------------------- /tasks/ruby.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm/macosx-with-ansible/HEAD/tasks/ruby.yml -------------------------------------------------------------------------------- /tasks/vhost.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm/macosx-with-ansible/HEAD/tasks/vhost.yml -------------------------------------------------------------------------------- /templates/git/SANDSTORM_INSTALL_INSTRUCTIONS.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm/macosx-with-ansible/HEAD/templates/git/SANDSTORM_INSTALL_INSTRUCTIONS.j2 -------------------------------------------------------------------------------- /templates/git/gitignore_global: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm/macosx-with-ansible/HEAD/templates/git/gitignore_global -------------------------------------------------------------------------------- /templates/mysql/mysql-service.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm/macosx-with-ansible/HEAD/templates/mysql/mysql-service.plist -------------------------------------------------------------------------------- /templates/nginx/fastcgi_params.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm/macosx-with-ansible/HEAD/templates/nginx/fastcgi_params.j2 -------------------------------------------------------------------------------- /templates/nginx/nginx-service.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm/macosx-with-ansible/HEAD/templates/nginx/nginx-service.plist -------------------------------------------------------------------------------- /templates/nginx/nginx-vhost.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm/macosx-with-ansible/HEAD/templates/nginx/nginx-vhost.j2 -------------------------------------------------------------------------------- /templates/nginx/nginx.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm/macosx-with-ansible/HEAD/templates/nginx/nginx.conf.j2 -------------------------------------------------------------------------------- /templates/oh-my-zsh/zshrc-template.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm/macosx-with-ansible/HEAD/templates/oh-my-zsh/zshrc-template.j2 -------------------------------------------------------------------------------- /templates/php/php-fpm.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm/macosx-with-ansible/HEAD/templates/php/php-fpm.conf.j2 -------------------------------------------------------------------------------- /templates/php/php-service.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm/macosx-with-ansible/HEAD/templates/php/php-service.plist -------------------------------------------------------------------------------- /templates/php/php.ini.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm/macosx-with-ansible/HEAD/templates/php/php.ini.j2 -------------------------------------------------------------------------------- /templates/ssh/commonConfig: -------------------------------------------------------------------------------- 1 | # add SSH config for everybody here 2 | -------------------------------------------------------------------------------- /templates/typo3flow/BehatSettings.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm/macosx-with-ansible/HEAD/templates/typo3flow/BehatSettings.yaml.j2 -------------------------------------------------------------------------------- /templates/typo3flow/Settings.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm/macosx-with-ansible/HEAD/templates/typo3flow/Settings.yaml.j2 -------------------------------------------------------------------------------- /yourlocalusername.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm/macosx-with-ansible/HEAD/yourlocalusername.yml --------------------------------------------------------------------------------