Skip to content

Latest commit

 

History

History
49 lines (30 loc) · 1.68 KB

github-login.md

File metadata and controls

49 lines (30 loc) · 1.68 KB
description
Configure Github OAuth to enable Login via Github for the Appsmith installation

Github OAuth

To enable Github Sign in, login to your Github Account

1. Navigate to the Organizations section of your profile and the settings of the organization under which you want to create an OAuth App

Click to expand

2. Navigate to the OAuth Apps section of the organization settings page

Click to expand

3. Create a new OAuth App

Click to expand

4. Configure the OAuth Credentials for a web application

Homepage URL: The domain on which you are hosting Appsmith with https (ex: https://app.appsmith.com)

Authorization Callback URL: Append /login/oauth2/code/github to the Homepage URL (ex: https://app.appsmith.com/login/oauth2/code/github)

Click to expand

5. Update the docker.env file in your Appsmith deployment folder

# ********* Github OAUth **********
APPSMITH_OAUTH2_GITHUB_CLIENT_ID=YOUR_GITHUB_CLIENT_ID
APPSMITH_OAUTH2_GITHUB_CLIENT_SECRET=YOUR_GITHUB_CLIENT_SECRET                                                                                                                          18,61         28%
# ******************************

6. Restart docker & nginx

sudo docker-compose rm -fsv appsmith-internal-server nginx && sudo docker-compose up -d

Github Login should now be enabled for your Appsmith installation