metamaps--metamaps/WindowsInstallation.md

46 lines
1.3 KiB
Markdown
Raw Normal View History

2015-11-20 06:34:05 +00:00
If you have any trouble with this process, contact us at team@metamaps.cc, and one of our developers may be able to help you out.
2014-09-03 15:38:43 +00:00
2015-11-20 06:34:05 +00:00
First, http://railsinstaller.org/en. This will install Ruby, Rails, and Git for you.
2015-11-20 06:34:05 +00:00
Once you've done that, you will need to download PostgreSQL and node.js:
2014-09-03 15:38:43 +00:00
2015-11-20 06:34:05 +00:00
- http://nodejs.org/en/download/
- http://www.postgresql.org/download/windows/
2014-10-18 12:52:36 +00:00
2015-11-20 06:34:05 +00:00
Now open a terminal, and navigate to the folder that you want to download the metamaps files to and run the following:
2014-09-03 15:38:43 +00:00
git clone https://github.com/metamaps/metamaps_gen002.git --branch develop
2014-09-03 15:38:43 +00:00
cd metamaps_gen002
Now you're in the main directory.
Install all the gems needed for Metamaps by running
bundle install
Setting up the database:
1) Copy /config/database.yml.default and rename the copy to /config/database.yml then edit database.yml with your text editor and set the password to whatever you chose when you set up the PostGres database.
2) In a terminal:
rake db:create
rake db:schema:load
rake db:fixtures:load
Running the server:
rails s
Navigate your browser to localhost:3000 once you have the server running
Sign in with the default account
email: user@user.com
password: toolsplusconsciousness
2014-09-03 15:40:35 +00:00
OR create a new account at /join, and use access code 'qwertyui'
2014-09-03 15:38:43 +00:00
Start mapping and programming!