bundle install
all gem dependenciesrails db:create
to create the Postgres database- then run
psql -d rate_your_landlord_backend_development -c 'CREATE EXTENSION pgcrypto'
in your command line to enable use of Postgres extensions that createsuuid
s instead of integer database primary keys (change your database name in this command if necessary) rails db:migrate
to create all necessary tables