File tree 2 files changed +13
-8
lines changed
2 files changed +13
-8
lines changed Original file line number Diff line number Diff line change 2
2
# vi: set ft=ruby :
3
3
4
4
# Load in custom vagrant settings
5
+ raise <<-EOF unless File . exists? ( "vagrant.yml" )
6
+
7
+ Hi! Before getting started with Vagrant and Coderwall
8
+ you'll need to setup the `vagrant.yml`. There should
9
+ be a file `vagrant.yml.example` that you can use as
10
+ a base reference. Copy the `vagrant.yml.example` to
11
+ `vagrant.yml` to get started.
12
+
13
+ EOF
14
+
5
15
require 'yaml'
6
16
custom_settings = File . file? ( 'vagrant.yml' ) ? YAML . load_file ( 'vagrant.yml' ) : { }
7
17
Original file line number Diff line number Diff line change 4
4
# In order to use, create a copy named vagrant.yml
5
5
#
6
6
7
- sync:
8
- use_nfs: false
7
+ use_nfs: false
9
8
virtualbox:
10
- cpus: 4
11
- memory: 4096
9
+ cpus: 2
10
+ memory: 2048
12
11
network:
13
12
port_mappings:
14
13
rails: 3000
15
- postgres: 2200
16
- redis: 2201
17
- elasticsearch: 9200
18
- mongodb: 27017
You can’t perform that action at this time.
0 commit comments