Vagrantfile 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. require 'yaml'
  2. require 'fileutils'
  3. required_plugins = %w( vagrant-hostmanager vagrant-vbguest )
  4. required_plugins.each do |plugin|
  5. exec "vagrant plugin install #{plugin}" unless Vagrant.has_plugin? plugin
  6. end
  7. domains = {
  8. frontend: 'y2aa-frontend.dev',
  9. backend: 'y2aa-backend.dev'
  10. }
  11. config = {
  12. local: './vagrant/config/vagrant-local.yml',
  13. example: './vagrant/config/vagrant-local.example.yml'
  14. }
  15. # copy config from example if local config not exists
  16. FileUtils.cp config[:example], config[:local] unless File.exist?(config[:local])
  17. # read config
  18. options = YAML.load_file config[:local]
  19. # check github token
  20. if options['github_token'].nil? || options['github_token'].to_s.length != 40
  21. puts "You must place REAL GitHub token into configuration:\n/yii2-app-advanced/vagrant/config/vagrant-local.yml"
  22. exit
  23. end
  24. # vagrant configurate
  25. Vagrant.configure(2) do |config|
  26. # select the box
  27. config.vm.box = 'bento/ubuntu-16.04'
  28. # should we ask about box updates?
  29. config.vm.box_check_update = options['box_check_update']
  30. config.vm.provider 'virtualbox' do |vb|
  31. # machine cpus count
  32. vb.cpus = options['cpus']
  33. # machine memory size
  34. vb.memory = options['memory']
  35. # machine name (for VirtualBox UI)
  36. vb.name = options['machine_name']
  37. end
  38. # machine name (for vagrant console)
  39. config.vm.define options['machine_name']
  40. # machine name (for guest machine console)
  41. config.vm.hostname = options['machine_name']
  42. # network settings
  43. config.vm.network 'private_network', ip: options['ip']
  44. # sync: folder 'yii2-app-advanced' (host machine) -> folder '/app' (guest machine)
  45. config.vm.synced_folder './', '/app', owner: 'vagrant', group: 'vagrant'
  46. # disable folder '/vagrant' (guest machine)
  47. config.vm.synced_folder '.', '/vagrant', disabled: true
  48. # hosts settings (host machine)
  49. config.vm.provision :hostmanager
  50. config.hostmanager.enabled = true
  51. config.hostmanager.manage_host = true
  52. config.hostmanager.ignore_private_ip = false
  53. config.hostmanager.include_offline = true
  54. config.hostmanager.aliases = domains.values
  55. # provisioners
  56. config.vm.provision 'shell', path: './vagrant/provision/once-as-root.sh', args: [options['timezone']]
  57. config.vm.provision 'shell', path: './vagrant/provision/once-as-vagrant.sh', args: [options['github_token']], privileged: false
  58. config.vm.provision 'shell', path: './vagrant/provision/always-as-root.sh', run: 'always'
  59. # post-install message (vagrant console)
  60. config.vm.post_up_message = "Frontend URL: http://#{domains[:frontend]}\nBackend URL: http://#{domains[:backend]}"
  61. end