- Git with credential manager
- Do not add GitHub account to SourceTree
- Create new token in https://github.com/settings/tokens
- Select "repo" scope
- Create token and copy it to clipboard
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| Vagrant.configure("2") do |config| | |
| # The most common configuration options are documented and commented below. | |
| # For a complete reference, please see the online documentation at | |
| # https://docs.vagrantup.com. | |
| config.vm.box = "ubuntu/xenial64" |
| --- | |
| - hosts: all | |
| become: true | |
| vars: | |
| apache_config_file: symfony.apache.conf | |
| tasks: | |
| # Packages | |
| - name: Update apt cache | |
| apt: update_cache=yes |
| --- | |
| - hosts: all | |
| become: true | |
| tasks: | |
| - name: Add apt repo for Node.js | |
| shell: curl -sL https://deb.nodesource.com/setup_4.x | sudo -E bash - | |
| - name: Ensure apt has updated cache | |
| apt: update_cache=yes |
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| # All Vagrant configuration is done below. The "2" in Vagrant.configure | |
| # configures the configuration version (we support older styles for | |
| # backwards compatibility). Please don't change it unless you know what | |
| # you're doing. | |
| Vagrant.configure(2) do |config| | |
| # The most common configuration options are documented and commented below. | |
| # For a complete reference, please see the online documentation at |
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| # All Vagrant configuration is done below. The "2" in Vagrant.configure | |
| # configures the configuration version (we support older styles for | |
| # backwards compatibility). Please don't change it unless you know what | |
| # you're doing. | |
| Vagrant.configure(2) do |config| | |
| # The most common configuration options are documented and commented below. | |
| # For a complete reference, please see the online documentation at |
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| # All Vagrant configuration is done below. The "2" in Vagrant.configure | |
| # configures the configuration version (we support older styles for | |
| # backwards compatibility). Please don't change it unless you know what | |
| # you're doing. | |
| Vagrant.configure(2) do |config| | |
| # The most common configuration options are documented and commented below. | |
| # For a complete reference, please see the online documentation at |