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.
inventory-app/example.env

14 lines
604 B

# Copy this to .env and change OAUTH Values
RUST_LOG=debug,tower_http=info
DATABASE_URL=sqlite://inventory-app.db
SESSION_DATABASE_URL=sqlite://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
ROUTES_INCLUDE_ERROR_TESTS=no
BOOTSTRAP_DATA="users=[(name:youruser@wherever.com, role:admin)]"

Powered by TurnKey Linux.