Skip to content

Instantly share code, notes, and snippets.

View rafaelfnaves's full-sized avatar

Rafael Naves rafaelfnaves

View GitHub Profile
@rafaelfnaves
rafaelfnaves / essential_rails_commands.md
Last active March 31, 2025 18:29
Really Essential Rails Commands
  • Rails new with specific database

    • rails new myapp --database=postgresql
    • rails new myapp --database=mysql
    • rails new myapp --database=sqlite3
  • API-only application

    • rails new myapp --api
  • Minimal application without default gems

  • rails new myapp --minimal

@rafaelfnaves
rafaelfnaves / settings.json
Created April 8, 2024 12:32
Vs Code Settings
{
"editor.accessibilitySupport": "off",
"editor.fontFamily": "JetBrainsMono Nerd Font",
"editor.fontSize": 14,
"editor.lineHeight": 1.8,
"editor.rulers": [
80,
120
],
"editor.fontLigatures": true,