Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/auth0/shiny-auth0-plus
Auth0 Shiny proxy with user authentication and authorization
https://github.com/auth0/shiny-auth0-plus
Last synced: about 2 months ago
JSON representation
Auth0 Shiny proxy with user authentication and authorization
- Host: GitHub
- URL: https://github.com/auth0/shiny-auth0-plus
- Owner: auth0
- Archived: true
- Created: 2017-05-03T20:56:00.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-05-30T18:01:52.000Z (over 6 years ago)
- Last Synced: 2024-09-24T21:04:31.875Z (about 2 months ago)
- Language: JavaScript
- Size: 46.9 KB
- Stars: 7
- Watchers: 4
- Forks: 7
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 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, Domain, Callback and groups claim for your Auth0 app as environment variables with the following names respectively: `AUTH0_CLIENT_SECRET`, `AUTH0_CLIENT_ID`, `AUTH0_DOMAIN`, `AUTH0_CALLBACK_URL` and `AUTH0_GROUPS_CLAIM`.
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:
````bash
# .env file
AUTH0_CLIENT_SECRET=myCoolSecret
AUTH0_CLIENT_ID=myCoolClientId
AUTH0_DOMAIN=myCoolDomain
AUTH0_CALLBACK_URL=https://my.url.com/
AUTH0_GROUPS_CLAIM=https://my.url.com/claims
COOKIE_SECRET=somethingRandomHerePlease
SHINY_HOST=localhost
SHINY_PORT=3838
SHINY_ADMIN_PORT=4151
PORT=3000
````Once you've set those environment variables, just run `npm start` and try calling [http://localhost:3000/](http://localhost:3000/)