mirror of
https://github.com/dnote/dnote
synced 2026-03-16 15:35:52 +01:00
* Fix release script * Write a smoke testing for self-hosting * Allow to supply tarball path * Clear db
9 lines
278 B
Ruby
9 lines
278 B
Ruby
# -*- mode: ruby -*-
|
|
|
|
Vagrant.configure("2") do |config|
|
|
config.vm.box = "ubuntu/bionic64"
|
|
config.vm.synced_folder './volume', '/vagrant'
|
|
config.vm.network "forwarded_port", guest: 2300, host: 2300
|
|
|
|
config.vm.provision 'shell', path: './setup.sh', privileged: false
|
|
end
|