mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
Initial release of Discourse
This commit is contained in:
14
Vagrantfile
vendored
Normal file
14
Vagrantfile
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
# See https://github.com/discourse/core/blob/master/DEVELOPMENT.md
|
||||
#
|
||||
Vagrant::Config.run do |config|
|
||||
config.vm.box = 'discourse-pre'
|
||||
config.vm.box_url = 'http://www.discourse.org/vms/discourse-pre.box'
|
||||
config.vm.network :hostonly, '192.168.10.200'
|
||||
|
||||
config.vm.forward_port 3000, 4000
|
||||
config.vm.forward_port 1080, 4080 # Mailcatcher
|
||||
|
||||
if RUBY_PLATFORM =~ /darwin/
|
||||
config.vm.share_folder("v-root", "/vagrant", ".", :nfs => true)
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user