Search
 
SCRIPT & CODE EXAMPLE
 

RUBY

How To Set Up Ruby on Rails with Postgres


https://medium.com/@frouster/ruby-on-rails-postgresql-f1b037924bdf
https://www.digitalocean.com/community/tutorials/how-to-set-up-ruby-on-rails-with-postgres
https://www.ionos.com/digitalguide/server/know-how/use-postgresql-with-ruby-on-rails-on-ubuntu/

#Install Rails
gem install rails

#Install Postgress
gem install pg

#Setting Up Postgres
su - postgres
psql
create role myapp with createdb login password 'password1';

#Creating Your Rails App
rails new myapp --database=postgresql

#More
rails db:create db:migrate
Comment

PREVIOUS NEXT
Code Example
Ruby :: rails find_by 
Ruby :: rails parse boolean 
Ruby :: how to find even number in an array ruby 
Ruby :: remove ascii characters from string ruby 
Ruby :: rails cors allow all 
Ruby :: how to reset migrations rails 
Ruby :: ruby add content to file 
Ruby :: change namespace in rails route 
Ruby :: ruby conditionals 
Ruby :: ruby includethis or that 
Ruby :: ruby division floating decimal 
Ruby :: ruby attr_writer example 
Ruby :: rails if else assignment one liner 
Ruby :: rails change database connection 
Ruby :: ruby map 
Ruby :: rails many to many relationship same model 
Ruby :: ruby shortcut to self.call 
Ruby :: deliver_later not sending mail in sidekiq in rails 
Ruby :: sequel alter table 
Ruby :: rails api render show page with id 
Ruby :: rails image_tag link size 
Ruby :: array sort_by nil ruby 
Ruby :: rails decode cookie 
Ruby :: i am working in ruby 2.6 how to jump to a lower version 
R :: remove elements from character vector in r 
R :: read csv file in r 
R :: r combine strings 
R :: r dictionary 
R :: export csv file in r 
R :: R dplyr select 
ADD CONTENT
Topic
Content
Source link
Name
5+6 =