# Use Supabase with Ruby on Rails

Learn how to create a Rails project and connect it to your Supabase Postgres database.

1. **Create a Rails Project**

Make sure your Ruby and Rails versions are up to date, then use `rails new` to scaffold a new Rails project. Use the `-d=postgresql` flag to set it up for Postgres.

Go to the [Rails docs](https://guides.rubyonrails.org/getting_started.html) for more details.

```bash name=Terminal
rails new blog -d=postgresql
```

2. **Set up the Postgres connection details**

Go to [database.new](https://database.new) and create a new Supabase project. Save your database password securely.

When your project is up and running, navigate to your project dashboard and click on [Connect](/dashboard/project/_?showConnect=true&method=session).

Look for the Session Pooler connection string and copy the string. You will need to replace the Password with your saved database password. You can reset your database password in your [Database Settings](/dashboard/project/_/database/settings) if you do not have it.

If you're in an [IPv6 environment](https://github.com/orgs/supabase/discussions/27034) or have the IPv4 Add-On, you can use the direct connection string instead of Supavisor in Session mode.

```bash name=Terminal
export DATABASE_URL=postgres://postgres.xxxx:password@xxxx.pooler.supabase.com:5432/postgres
```

3. **Create and run a database migration**

Rails includes Active Record as the ORM as well as database migration tooling which generates the SQL migration files for you.

Create an example `Article` model and generate the migration files.

```bash name=Terminal
bin/rails generate model Article title:string body:text
bin/rails db:migrate
```

4. **Use the Model to interact with the database**

You can use the included Rails console to interact with the database. For example, you can create new entries or list all entries in a Model's table.

```bash name=Terminal
bin/rails console
```

```rb name=irb
article = Article.new(title: "Hello Rails", body: "I am on Rails!")
article.save # Saves the entry to the database

Article.all
```

5. **Start the app**

Run the development server. Go to http://127.0.0.1:3000 in a browser to see your application running.

```bash name=Terminal
bin/rails server
```