Skip to content

Commit 8ec46eb

Browse files
authored
Merge pull request #121 from supabase/feat/schema_cache_crate
feat: add initial schema cache
2 parents efb2e9f + 69f89eb commit 8ec46eb

File tree

10 files changed

+1828
-270
lines changed

10 files changed

+1828
-270
lines changed

.env

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
DATABASE_URL=postgresql://postgres:postgres@127.0.0.1:5432/postgres

.github/workflows/ci.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,16 @@ jobs:
1717
timeout-minutes: 10
1818
runs-on: ubuntu-latest
1919

20+
services:
21+
postgres:
22+
image: postgres:latest
23+
env:
24+
POSTGRES_USER: postgres
25+
POSTGRES_PASSWORD: postgres
26+
POSTGRES_DB: postgres
27+
ports:
28+
- 5432:5432
29+
2030
steps:
2131
- name: 🏗 Setup repository
2232
uses: actions/checkout@v3

0 commit comments

Comments
 (0)