-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Aryan J edited this page Jun 28, 2018
·
14 revisions
Welcome to the Bears-Team-3 wiki!
Of course. We suggest using RVM to manage your Ruby installation. If you're using a Homebrew on Mac OS, this should be as easy as brew install rvm
. On Linux, the installation instruction here may help.
If you're using Homebrew on Mac OS:
brew install postgres
initdb brew --prefix /var/postgres/data -E utf8
createdb
psql -h localhost
-
create role myapp with createdb login password 'password1';
(as seen indatabase.yml
) - from
/backend
,bundle install
rake db:setup
You should now be able to successfully run the rails server using Postgres.