This is the frontend part of the Homeday GitHub Stats app. Documentation covers all of the deployment requirements.
It is recommended to set up the backend part of this guide first.
There are two parts to the Travis config, .travis.variables.sh
file in this repo where we set some variables based on the environment (there you will want to change your S3 bucket and lambda urls), and the configuration of the repository.
You will need the following list of environment variables defined in the repo settings of the Travis APP:
AUTH0_CLIENT_ID
: Public, Client ID of your Auth0 "SINGLE PAGE APPLICATION" appAUTH0_DOMAIN
: Public, probably the same as AUTH0_BACKEND_DOMAIN unless you used two separate Auth0 accountsAWS_ACCESS_KEY_ID
: Private, access key of the AWS account with permissions to write to S3AWS_SECRET_ACCESS_KEY
: Private, secret access key of the AWS account with permissions to write to S3
npm install
npm run serve
Authentication is performed with Auth0. Once authenticated, a lis tof repositories is requested from the lambda backend. Once the repositories and the time range are selected, a request is sent to the lambda to analyze them. Lambda quickly responds with the path on our S# bucket where the results will be made available publicly. We then poll that path until the results show up (in the form of a JSON file), after which we display them on the frontend.