Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,17 @@ cp .env.example .env

Aurora uses PostgreSQL for data storage, running in Docker for easy setup and management.

### Starting the Database

If you are only working on the frontned UI, you can use a staging database on Supabase. In your `.env`, add this:

```
DATABASE_URL="postgresql://postgres.PROJECT_ID:PASSWORD@aws-1-us-east-2.pooler.supabase.com:5432/postgres"
```

Replace `PROJECT_ID` and `PASSWORD` with the proper credentials.


### Starting the Database (Devs Only)

1. Start the PostgreSQL container:
```bash
Expand Down