We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed1da25 commit d143d57Copy full SHA for d143d57
Vagrantfile
@@ -3,7 +3,11 @@
3
4
Vagrant.configure("2") do |config|
5
6
- config.vm.box = "bento/ubuntu-22.04"
+ config.vm.box = 'bento/ubuntu-24.04'
7
+ if RUBY_PLATFORM.include?('darwin') && RUBY_PLATFORM.include?('arm64')
8
+ # Apple Silicon/M processor
9
+ config.vm.box = 'gutehall/ubuntu24-04'
10
+ end
11
12
config.vm.synced_folder ".", "/home/vagrant/python-opencage-geocoder"
13
0 commit comments