Last active
August 30, 2019 16:50
-
-
Save 031nna/7fda921186def27b2df1bf59039c54c5 to your computer and use it in GitHub Desktop.
homestead yaml files for windows OS and BSD
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
ip: "192.168.10.10" | |
memory: 2048 | |
cpus: 1 | |
provider: virtualbox | |
authorize: ~/.ssh/id_rsa.pub | |
keys: | |
- ~/.ssh/id_rsa | |
folders: | |
- map: ~/Documents/Projects/Homestead/sites | |
to: /home/vagrant/sites | |
sites: | |
- map: engine.local | |
to: /home/vagrant/sites/engine | |
- map: phplist.local | |
to: /home/vagrant/sites/phplist | |
php: "7.0" | |
- map: jenkins.local | |
to: /home/vagrant/sites/Jenkins | |
- map: hospitaladmin.local | |
to: /home/vagrant/sites/web/public | |
php: "7.2" | |
- map: magento.local | |
to: /home/vagrant/sites/magento2/pub/ | |
php: "7.1.3" | |
- map: jobfetcher.local | |
to: /home/vagrant/sites/jobfetcher/public | |
php: "5.6" | |
databases: | |
- homestead | |
- jobfetcher | |
- point | |
- mag | |
variables: | |
- key: APP_ENV | |
value: local | |
- key: APP_KEY | |
value: p7I6obiImtlbnBsdW1iIn1 | |
- key: TOKEN_ALG | |
value: HS256 | |
- key: DB_USER_N_PASS | |
value: root | |
- key: TRUE_VAR | |
value: 'true' | |
- key: FALSE_VAR | |
value: 'false' | |
# changed paths to work for windows, the default would work for linux without the need to change paths | |
# add `192.168.10.10 site.local` to windows host file C:\Windows\System32\drivers\etc\hosts | |
# install engine https://github.com/1966/engine | |
# blackfire: | |
# - id: foo | |
# token: bar | |
# client-id: foo | |
# client-token: bar | |
# ports: | |
# - send: 50000 | |
# to: 5000 | |
# - send: 7777 | |
# to: 777 | |
# protocol: udp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
ip: "192.168.10.10" | |
memory: 2048 | |
cpus: 1 | |
provider: virtualbox | |
authorize: c:/Users/obi/.ssh/id_rsa | |
keys: | |
- c:/Users/obi/.ssh/id_rsa | |
folders: | |
- map: c:/Users/obi/Documents/Projects/Homestead/sites | |
to: /home/vagrant/sites | |
sites: | |
- map: engine.local | |
to: /home/vagrant/sites/engine | |
- map: api.roots.local | |
to: /home/vagrant/sites/roots-api | |
- map: jenkins.local | |
to: /home/vagrant/sites/Jenkins | |
- map: hospitaladmin.local | |
to: /home/vagrant/sites/web/public | |
php: "7.2" | |
- map: jobfetcher.local | |
to: /home/vagrant/sites/jobfetcher/public | |
php: "5.6" | |
databases: | |
- homestead | |
variables: | |
- key: APP_ENV | |
value: local | |
- key: APP_KEY | |
value: p7InVzZXJJZCI6obiImtlbnBsdW1iIn1 | |
- key: TOKEN_ALG | |
value: HS256 | |
- key: DB_USER_N_PASS | |
value: root | |
- key: TRUE_VAR | |
value: 'true' | |
- key: FALSE_VAR | |
value: 'false' | |
# blackfire: | |
# - id: foo | |
# token: bar | |
# client-id: foo | |
# client-token: bar | |
# ports: | |
# - send: 50000 | |
# to: 5000 | |
# - send: 7777 | |
# to: 777 | |
# protocol: udp |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment