Skip to content

Commit 6b98e5c

Browse files
committed
Build CRUD API with Rust, SQLX, Actix-web, and Postgres
0 parents  commit 6b98e5c

File tree

13 files changed

+2831
-0
lines changed

13 files changed

+2831
-0
lines changed

.env

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
POSTGRES_HOST=127.0.0.1
2+
POSTGRES_PORT=6500
3+
POSTGRES_USER=admin
4+
POSTGRES_PASSWORD=password123
5+
POSTGRES_DB=rust_sqlx
6+
7+
DATABASE_URL=postgresql://admin:password123@localhost:6500/rust_sqlx?schema=public

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/target

0 commit comments

Comments
 (0)