Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 506 Bytes

File metadata and controls

33 lines (24 loc) · 506 Bytes

Authentication Service

  • Ruby version 3.6.6

Tech

  • Google OAuth
  • Sqlite

Developer Setup

Install dependencies

bundle install

DB Setup

rails db:migrate # to apply all migrations
rails db:rollback # to revert latest migration

OAuth Configuration

cp .env.example .env

Update .env file values GOOGLE_CLIENT_ID and GOOGLE_CLIENT_SECRET with your auth client at https://console.cloud.google.com/auth/clients

How to Run

rails server