-
Notifications
You must be signed in to change notification settings - Fork 88
/
Vagrantfile
47 lines (34 loc) · 1.34 KB
/
Vagrantfile
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
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure(2) do |config|
config.vm.box = "ubuntu/focal64"
# Enable NFS access to the disk
config.vm.synced_folder ".", "/vagrant", disabled: true
config.vm.synced_folder ".", "/vagrant/mapit", :nfs => true
# NFS requires a host-only network
# This also allows you to test via other devices (e.g. mobiles) on the same
# network
config.vm.network :private_network, ip: "10.11.12.13"
# Django dev server
config.vm.network "forwarded_port", guest: 8000, host: 8000
# Give the VM a bit more power to speed things up
config.vm.provider "virtualbox" do |v|
v.memory = 2048
v.cpus = 2
end
# Provision the vagrant box
config.vm.provision "shell", inline: <<-SHELL
apt-get update
chown vagrant:vagrant /vagrant
cd /vagrant/mapit
xargs apt-get install -qq -y < conf/packages.generic
# Create a postgresql user
su postgres -c 'psql -c "CREATE USER vagrant SUPERUSER CREATEDB"'
# Run install-as-user to set up a database, virtualenv, python, sass etc
su vagrant -c 'bin/install-as-user vagrant mapit.mysociety.org /vagrant'
# Nicer running of runserver
su vagrant -c '../virtualenv-mapit/bin/pip install pyinotify'
# Auto-activate virtualenv on login
echo >> /home/vagrant/.bashrc "source /vagrant/virtualenv-mapit/bin/activate"
SHELL
end