structurely / shiny-auth0

Auth0 shiny proxy

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Auth0 + Shiny proxy

This server proxies a shiny instance protecting it with Auth0

#Running the proxy In order to run this proxy you need to have npm and nodejs installed.

You also need to set the ClientSecret, ClientId and Domain for your Auth0 app as environment variables with the following names respectively: AUTH0_CLIENT_SECRET, AUTH0_CLIENT_ID and AUTH0_DOMAIN.

For that, if you just create a file named .env in the directory and set the values like the following, the app will just work:

# .env file
AUTH0_CLIENT_SECRET=myCoolSecret
AUTH0_CLIENT_ID=myCoolClientId
AUTH0_DOMAIN=myCoolDomain
AUTH0_CALLBACK_URL=https://my.url.com/
COOKIE_SECRET=somethingRandomHerePlease
SHINY_HOST=localhost
SHINY_PORT=3838
PORT=3000

Once you've set those 3 environment variables, just run npm start and try calling http://localhost:3000/

About

Auth0 shiny proxy


Languages

Language:JavaScript 80.9%Language:HTML 17.7%Language:CSS 1.4%