Skip to content
This repository has been archived by the owner on Aug 17, 2022. It is now read-only.

Commit

Permalink
Merge pull request #15 from technologiestiftung/feat/subscriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
ff6347 committed May 25, 2022
2 parents 9492726 + 28471e7 commit ba03b2b
Show file tree
Hide file tree
Showing 19 changed files with 31,666 additions and 478 deletions.
8 changes: 8 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
JWT_SECRET=
REDIS_URL=
DATABASE_URL=
HOST=
PORT=
SUPABASE_ANON_KEY=
SUPABASE_SERVICE_ROLE_KEY=
SUPABASE_URL=
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
32 changes: 32 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Attach by Process ID",
"processId": "${command:PickProcess}",
"request": "attach",
"skipFiles": ["<node_internals>/**"],
"type": "node"
},
{
"name": "Launch with ts-node",
"type": "node",
"request": "launch",
"runtimeExecutable": "node",
"runtimeArgs": [
"--nolazy",
"-r",
"ts-node/register",
"-r",
"dotenv/config"
],
"args": ["src/index.ts"],
"cwd": "${workspaceRoot}",
"internalConsoleOptions": "openOnSessionStart",
"skipFiles": ["<node_internals>/**", "node_modules/**"]
}
]
}
11 changes: 11 additions & 0 deletions dev-tools/rest-client/api.http
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@

POST http://localhost:54321/auth/v1/signup
Content-Type: application/json
apikey: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZS1kZW1vIiwicm9sZSI6ImFub24ifQ.625_WdcF3KHqz5amU0x2X5WWHP-OEs_4qj0ssLNHzTs

{
"email": "someone@email.com",
"password": "NQCklqnnvISOEivPgnnn"
}'

###

0 comments on commit ba03b2b

Please sign in to comment.