Skip to content

Commit 004dae5

Browse files
have it your way, sqlx
2 parents db3612b + 13f67f5 commit 004dae5

File tree

34 files changed

+1205
-1296
lines changed

34 files changed

+1205
-1296
lines changed

.env

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

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- 5432:5432
2929

3030
env:
31-
DB_CONNECTION_STRING: postgresql://postgres:postgres@localhost:5432/postgres
31+
DATABASE_URL: postgresql://postgres:postgres@localhost:5432/postgres
3232

3333
steps:
3434
- name: 🏗 Setup repository

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,5 @@ target/
1717
# File system
1818
.DS_Store
1919
desktop.ini
20+
21+
*.log

Cargo.lock

Lines changed: 234 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ pg_hover = { path = "./crates/pg_hover", version = "0.0.0" }
3939
pg_inlay_hints = { path = "./crates/pg_inlay_hints", version = "0.0.0" }
4040
pg_lint = { path = "./crates/pg_lint", version = "0.0.0" }
4141
pg_workspace = { path = "./crates/pg_workspace", version = "0.0.0" }
42-
pg_lsp = { path = "./crates/lsp", version = "0.0.0" }
4342

4443
pg_test_utils = { path = "./crates/pg_test_utils" }
4544
# parser = { path = "./crates/parser", version = "0.0.0" }
@@ -49,4 +48,3 @@ pg_test_utils = { path = "./crates/pg_test_utils" }
4948

5049
[profile.dev.package]
5150
insta.opt-level = 3
52-
similar.opt-level = 3

0 commit comments

Comments
 (0)