File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -25,3 +25,8 @@ public/client
2525.DS_Store
2626
2727* .swp
28+
29+ # Ignore vagrant related files for future Contributors
30+ .vagrant
31+ Vagrantfile
32+ package.box
Original file line number Diff line number Diff line change 1+ #Setting up the Development Environment#
2+
3+ ## Introduction ##
4+
5+ The steps described in the document automates the setup of the development enviroment for working with the Community Code itself.
6+
7+ ##Requirements##
8+
9+ - [ VirtualBox] [ 1 ]
10+ - [ Vagrant] [ 2 ]
11+
12+ ##How to build the VM##
13+
14+ It should be easy:
15+
16+ host $ git clone https://github.com/recursecenter/community.git
17+ host $ cd community
18+ host $ vagrant up
19+ host $ vagrant ssh
20+ vm $ cd /vagrant
21+ vm $ bin/rake db:setup
22+
23+ You are done now!
24+
25+ [ 1 ] : https://www.virtualbox.org/
26+ [ 2 ] : https://www.vagrantup.com/
Original file line number Diff line number Diff line change 1+ Vagrant . configure ( 2 ) do |config |
2+ config . vm . box = "recursecenter/community-dev"
3+
4+ config . vm . network "forwarded_port" , guest : 5001 , host : 5001
5+ config . vm . network "forwarded_port" , guest : 9200 , host : 9200
6+
7+ config . vm . provider "virtualbox" do |vb |
8+ vb . memory = "2048"
9+ end
10+ end
You can’t perform that action at this time.
0 commit comments