forked from geerlingguy/mac-dev-playbook
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsp.config.yml
More file actions
91 lines (77 loc) · 1.86 KB
/
sp.config.yml
File metadata and controls
91 lines (77 loc) · 1.86 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
---
user_name: "{{ full_name }}"
user_email: "{{ email_address }}"
downloads: ~/.ansible-downloads/
default_python_version: 3.6.8
# Glob pattern to ansible task files to run after all other tasks are finished.
post_provision_tasks:
- tasks/post-provision.yml
sp_git_repos_local_directory: ~/envs
sp_git_repos:
- ansible
- paywall
- publisher-feeds
- single-api
- spdj
- spfb
- spregression
pub_git_repos:
- peikk0/tmux-cssh
pub_git_repos_local_directory: ~/install
mas_installed_sp_apps: []
homebrew_upgrade_all_packages: True
homebrew_sp_packages:
- autoconf
- awscli
- bash-completion
- coreutils
- gettext
- git
- git-secrets
- gpg
- mysql-client
- openssl
- pwgen
- pyenv
- pyenv-pip-migrate
- pyenv-virtualenv
- readline
- sqlite
- tmux
- vagrant-completion
homebrew_taps:
- homebrew/core
- homebrew/cask
homebrew_cask_appdir: /Applications
homebrew_cask_sp_apps:
- aws-vault
- font-dejavusansmono-nerd-font
- font-droidsansmono-nerd-font
- font-hack-nerd-font
- github
- hipchat
- iterm2
- mysql-client
- mysql-connector-python
- postman
- utc-menu-clock
- vagrant
- virtualbox
osx_script: "~/.osx --no-restart"
composer_sp_packages: []
gem_sp_packages: []
npm_sp_packages: []
pip_sp_packages:
- state: latest
name:
- pip
- wheel
- setuptools
- virtualenv
mas_installed_apps: "{{ mas_installed_sp_apps + mas_additional_installed_apps }}"
homebrew_cask_apps: "{{ homebrew_cask_sp_apps + homebrew_cask_additional_apps }}"
homebrew_installed_packages: "{{ homebrew_sp_packages + homebrew_additional_packages }}"
composer_packages: "{{ composer_sp_packages + composer_additional_packages }}"
gem_packages: "{{ gem_sp_packages + gem_additional_packages }}"
npm_packages: "{{ npm_sp_packages + npm_additional_packages }}"
pip_packages: "{{ pip_sp_packages + pip_additional_packages }}"