init db with migration, create users table

This commit is contained in:
Paul Coral
2025-07-28 08:16:34 +02:00
parent 8b327dcb18
commit c3881d7ff7
24 changed files with 494 additions and 23 deletions

View File

@@ -0,0 +1,15 @@
meta {
name: credentials
type: http
seq: 1
}
post {
url: {{BASE_URL}}/auth/credentials
body: none
auth: inherit
}
settings {
encodeUrl: true
}

View File

@@ -0,0 +1,8 @@
meta {
name: auth
seq: 1
}
auth {
mode: inherit
}

View File

@@ -0,0 +1,9 @@
{
"version": "1",
"name": "LocalAPI",
"type": "collection",
"ignore": [
"node_modules",
".git"
]
}

View File

@@ -0,0 +1,3 @@
vars {
BASE_URL: http://localhost:3000
}

View File

@@ -0,0 +1,15 @@
meta {
name: hello
type: http
seq: 2
}
get {
url: {{BASE_URL}}/hello
body: none
auth: inherit
}
settings {
encodeUrl: true
}