Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ OAUTH2_PROXY_HTTP_ADDRESS=${SERVER_HOST}:${AUTHPROXY_PORT}
OAUTH2_PROXY_PROVIDER=oidc
OAUTH2_PROXY_SKIP_PROVIDER_BUTTON=true
OAUTH2_PROXY_EMAIL_DOMAINS="*"
OAUTH2_PROXY_SCOPE=openid offline_access email profile
OAUTH2_PROXY_SCOPE="openid offline_access email profile"
Copy link
Collaborator Author

@johnnyomair johnnyomair Mar 19, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This change fixes the following error:

demo-docker: .env: line 114: offline_access: command not found

OAUTH2_PROXY_PASS_AUTHORIZATION_HEADER=true
OAUTH2_PROXY_COOKIE_SECRET=1234567890123456
OAUTH2_PROXY_COOKIE_REFRESH=55m
Expand Down
2 changes: 1 addition & 1 deletion dev-pm.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ export default defineConfig({
//group demo api
{
name: "demo-docker",
script: "pnpm run dev:docker-compose up",
script: "set -a; . .env; . .env.local; set +a; docker compose up",
group: ["demo-api", "demo"],
},
{
Expand Down
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
"dev:oauth2-proxy": "dotenv -- ./node_modules/.bin/oauth2-proxy",
"dev:demo-api-mitmproxy": "dotenv -- sh -c './node_modules/.bin/mitmweb --mode reverse:http://localhost:$API_PORT --listen-port $API_MITMPROXY_PORT --web-host localhost --web-port $MITMPROXY_WEB_INTERFACE_PORT --no-web-open-browser --set web_password=$MITMPROXY_WEB_PASSWORD'",
"dev:oidc-provider": "dotenv -- dev-oidc-provider",
"dev:docker-compose": "dotenv -e .env.secrets -e .env.local -e .env -- docker compose",
"intl:extract": "formatjs extract './packages/admin/**/*.{ts,tsx}' --out-file 'lang/en.json' --ignore '**/*.{test,spec}.{ts,tsx}' --ignore './**.d.ts' --ignore './**.d.ts.map' --format simple --throws",
"lint": "pnpm lint:root && pnpm --recursive run lint && pnpm lint:knip",
"lint:ci": "pnpm lint:root && pnpm --recursive run lint:ci && pnpm lint:knip",
Expand Down
Loading