Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ coverage
out/
build
dist

target

# Debug
npm-debug.log*
Expand Down
2 changes: 2 additions & 0 deletions axum-backend/.cargo/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[alias]
prisma = "run -p prisma-cli --"
4 changes: 4 additions & 0 deletions axum-backend/.env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
DATABASE_URL=postgresql://myuser:mypassword@localhost:5432/mydatabase?schema=public
TWILIO_AUTH_TOKEN=""
TWILIO_ACCOUNT_SID=""
TWILIO_PHONE_NUMBER="",
2 changes: 2 additions & 0 deletions axum-backend/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.env
prisma.rs
Loading