Skip to content

ResonantGeoData/RGD-Vue

Repository files navigation

RGD-Vue

CI Netlify Status

Visit our production instance at: https://gui.resonantgeodata.com/

Building the Development Environment

Requirements

Building

  • Build an instance of RGD according to the developer documentation
  • In your RGD instance, navigate to the Admin Area, scroll to "Applications" and create new
  • The settings for your new application should match as follows:
    • Redirect URLs: http://localhost:8080/ (trailing slash matters)
    • Client type: Public
    • Authorization grant type: Authorization code
    • Client Secret: empty
    • Name: A descriptive name of your choosing

image

  • Create a new file .env.development.local in your RGD-Vue directory to house environent variables:
    • Set VUE_APP_OAUTH_CLIENT_ID to the value found in your application's "Client ID" field. This value represents a new OAuth2 public client ID.

With these values set, you can run the development server on port 8080 by running: yarn yarn serve

At any time that you wish to launch RGD-Vue, you MUST have an instance of RGD running beforehand.