A barebones starter application for Auth0 and the topcoder API. Provides login functionality, security and viewing user info.
Setup for Auth0 is extremely fast and easy. Just sign up for a free account at Auth0 and then open the Dashboard. Click on the "Default App" from the Apps/APIs section and enter your callback URLs: http://localhost:8000/callback in the list of Available Callback URLs. You'll need some of the settings from this page when configuring up your app.
In app.js, after a successfuly login with Auth0, we are hardcoding a member object that will eventually be returned from calling the topcoder API. This just makes development easier for now. Feel free to change the handle to whatever you'd like.
From the command line type in:
git clone git@github.com:topcoderinc/tco-hackathon.git cd tco-hackathon npm install - Open terminal and change directory to tco-hackathon root
- Export the following variables to your environment from Auth0.
export AUTH0_DOMAIN=YOUR-AUTH0-NAMESPACE export AUTH0_CLIENT_ID=YOUR-AUTH0-CLIENT-ID export AUTH0_CLIENT_SECRET=YOUR-AUTH0-CLIENT-SECRET export AUTH0_CALLBACK_URL=http://localhost:8000/callback export AUTH0_SCOPE='openid' - Start the server with
node app.js - Point your browser to: http://localhost:8000
- Jeff Douglas -> jeffdonthemic