You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
490 B
12 lines
490 B
# Copy this to .env and change OAUTH Values
|
|
RUST_LOG=debug,tower_http=info
|
|
DATABASE_URI=inventory-app.db
|
|
SESSION_DATABASE_URI=session.db
|
|
OAUTH_CLIENT_ID=changeme
|
|
OAUTH_CLIENT_SECRET=changme
|
|
OAUTH_AUTH_URL=https://accounts.google.com/o/oauth2/auth
|
|
OAUTH_TOKEN_URL=https://accounts.google.com/o/oauth2/token
|
|
OAUTH_REVOKE_URL=https://accounts.google.com/o/oauth2/revoke
|
|
OAUTH_USER_INFO_URL=https://www.googleapis.com/oauth2/v1/userinfo
|
|
OAUTH_REDIRECT_URL=http://localhost:4206/auth/authorized
|