Skip to content

Commit

Permalink
Update Routes, Env, Introduce Database & OpenId
Browse files Browse the repository at this point in the history
  • Loading branch information
lucemans committed Jul 22, 2024
1 parent d2bdddc commit 6ca5a18
Show file tree
Hide file tree
Showing 11 changed files with 973 additions and 57 deletions.
2 changes: 2 additions & 0 deletions engine/.dockerignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
target/debug
.env
.env.template
8 changes: 8 additions & 0 deletions engine/.env.template
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# OpenID Connect OAuth 2.0
OPENID_CLIENT_ID=devclient
OPENID_CLIENT_SECRET=devclient
OPENID_REDIRECT=http://localhost:3000/callback
OPENID_ISSUER=http://localhost:8080/realms/master

# Postgres Database
DATABASE_URL=postgres://postgres:postgres@localhost:5432/postgres
1 change: 1 addition & 0 deletions engine/.gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
target/
.env
Loading

0 comments on commit 6ca5a18

Please sign in to comment.