This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import express from "express"; | |
import passport from "passport"; | |
import querystring from "querystring"; | |
import dotenv from "dotenv"; | |
import expressSession from "express-session"; | |
import oidc from "passport-auth0-openidconnect"; | |
import cookieParser from "cookie-parser"; | |
import {ensureLoggedIn} from "connect-ensure-login"; | |
import { passportJwtSecret } from "jwks-rsa"; | |
import { ExtractJwt, Strategy as JWTStrategy } from "passport-jwt"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
labels: | |
app: ingress | |
name: oauth2-proxy | |
spec: | |
replicas: 1 | |
selector: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Welcome to Node.js v18.0.0-pre. | |
Type ".help" for more information. | |
> process.env.SOMETHING = undefined; | |
undefined | |
> process.env.SOMETHING === undefined; | |
false | |
> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.purepm | |
import java.util.Properties | |
import javax.sql.DataSource | |
import com.zaxxer.hikari.HikariConfig | |
import com.zaxxer.hikari.HikariDataSource | |
import java.sql.Connection | |
class TestDataource { | |
var pool : Option[DataSource] = None |