Skip to content

Instantly share code, notes, and snippets.

View ajessee's full-sized avatar
🖥️
Coding

André ajessee

🖥️
Coding
View GitHub Profile
@stevecass
stevecass / rails_setup_notes.txt
Last active November 20, 2019 00:56
Starting a new rails app
#Creating an app called my_great_app
rails new my_great_app -T -d postgresql --skip-turbolinks
cd my_great_app
git init
git add .
git commit -m "Initial commit. Rails boilerplate."
# Edit gemfile
# #Remove the reference to coffee-rails.
@ibraheem4
ibraheem4 / postgres-brew.md
Last active July 18, 2024 00:18 — forked from sgnl/postgres-brew.md
Installing Postgres via Brew (OSX)

Installing Postgres via Brew

Pre-Reqs

Brew Package Manager

In your command-line run the following commands:

  1. brew doctor
  2. brew update