Skip to content

Commit 9d94e48

Browse files
committed
Introduce improved auth
1 parent 803341b commit 9d94e48

22 files changed

+760
-544
lines changed

.gitignore

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

.vscode/tasks.json

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,23 @@
2121
"group": "build",
2222
"problemMatcher": []
2323
},
24+
{
25+
"label": "Run Docker Dev",
26+
"type": "shell",
27+
"command": "docker compose up",
28+
"options": {
29+
"cwd": "${workspaceFolder}/app"
30+
},
31+
"group": "build",
32+
"problemMatcher": []
33+
},
2434
{
2535
"label": "Run All",
2636
"dependsOrder": "parallel",
2737
"dependsOn": [
2838
"Run App",
29-
"Run Web"
39+
"Run Web",
40+
"Run Docker Dev"
3041
],
3142
"group": {
3243
"kind": "build",

app/.env.example

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,6 @@ STEAM_WEB_API_KEY=your_steam_api_key_here
22
STEAM_AUTH_RETURN_URL=http://localhost:3000/api/auth/oauth/steam/callback
33
STEAM_AUTH_REALM=http://localhost:3000
44
RUST_LOG=info
5+
6+
DATABASE_URL=postgres://postgres:postgres@localhost:5432/postgres
7+
JWT_SECRET=secret

app/.sqlx/query-1f34b26b6c335856e9dc4df960f5a33619d8a4fbf0f017c5ea376bac6bbc0918.json

Lines changed: 55 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/.sqlx/query-835a87db346a73d18737203b19d62adf036f06ef57f8192db45a6c618cec7751.json

Lines changed: 53 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/.sqlx/query-abdde5f8e959f11d9bc4ae692304ecfdc06d57fdd1ff5b7650f2d867c15e2af8.json

Lines changed: 22 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)