diff --git a/.env.local b/.env.local index ecffd56..05a3350 100644 --- a/.env.local +++ b/.env.local @@ -1,4 +1,7 @@ -VUE_APP_SPECKLE_ID=720cce4c99 -VUE_APP_SPECKLE_SECRET=d26ea2c5c0 -VUE_APP_SERVER_URL=https://latest.speckle.dev -VUE_APP_SPECKLE_NAME=SpeckleDemo \ No newline at end of file +# Replace these with the app id and app secret that you get once registering +# an application on the Speckle Server! +VUE_APP_SPECKLE_ID=c2c12aaad2 +VUE_APP_SPECKLE_SECRET=3b4109dc32 +# Make sure you change this to use the server of your choice! +VUE_APP_SERVER_URL=https://speckle.xyz +VUE_APP_SPECKLE_NAME="Speckle Demo App" \ No newline at end of file diff --git a/src/App.vue b/src/App.vue index f49ce14..96cab99 100644 --- a/src/App.vue +++ b/src/App.vue @@ -15,7 +15,7 @@ width="40" height="24" /> -

SPECKLE DEMO APP

+

Speckle Demo App

diff --git a/src/components/WelcomeView.vue b/src/components/WelcomeView.vue index 943e46a..903ddff 100644 --- a/src/components/WelcomeView.vue +++ b/src/components/WelcomeView.vue @@ -1,7 +1,10 @@ diff --git a/src/speckleUtils.js b/src/speckleUtils.js index 7528cee..2637110 100644 --- a/src/speckleUtils.js +++ b/src/speckleUtils.js @@ -1,6 +1,6 @@ import {streamCommitsQuery, streamSearchQuery, userInfoQuery} from "@/speckleQueries"; -export const APP_NAME = process.env.VUE_APP_SPECKLE_NAME //VUE_APP_SPECKLE_ID +export const APP_NAME = process.env.VUE_APP_SPECKLE_NAME export const SERVER_URL = process.env.VUE_APP_SERVER_URL export const TOKEN = `${APP_NAME}.AuthToken` export const REFRESH_TOKEN = `${APP_NAME}.RefreshToken`