A centralised platform for creating, storing, analysing and showcasing spatial data.
To get a version running locally:
git clone https://github.com/ellisdod/urban-analytics.git
cd urban-analytics
npm install
Then in separate terminal windows run the following:
The server:
node server
The client:
npm run dev
You will need to create an OpenID Connect Application in Okta to get your values to perform authentication.
Log in to your Okta Developer account (or sign up if you don’t have an account) and navigate to Applications > Add Application. Click Single-Page App, click Next, and give the app a name you’ll remember, and click Done.
Create a .env file with the following settings
VUE_APP_OKTA_CLIENT_ID=*yourOktaClientId*
VUE_APP_OKTA_URI=*yourOktaDomain*
MONGODB_URI=*yourMongoUri*
NOTE: The value of {yourOktaDomain}
should be something like dev-123456.oktapreview
.