Skip to content

Commit

Permalink
Consume opening hours from Microsoft Graph API
Browse files Browse the repository at this point in the history
  • Loading branch information
Siilwyn committed May 21, 2024
1 parent dc6573a commit cd17215
Show file tree
Hide file tree
Showing 30 changed files with 1,608 additions and 1,809 deletions.
12 changes: 5 additions & 7 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
URL=http://localhost:3463
URL="http://localhost:3463"
DATO_API_TOKEN=
INTERNAL_SECRET="dev"
KAFKA_URL=
KAFKA_USERNAME=
KAFKA_PASSWORD=
Expand All @@ -10,9 +11,6 @@ MAPBOX_TOKEN=
SUPABASE_URL="https://pfsmhuunrlzvdbteqfku.supabase.co"
SUPABASE_KEY=""
SUPABASE_SERVICE_KEY=""
INTERNAL_SECRET="dev"
USE_MOCK_DATA_EXCHANGE=0
EWS_USER=
EWS_PASS=
EWS_ENDPOINT=
SPACES_MODE=spaces
MICROSOFT_GRAPH_CLIENT_ID=""
MICROSOFT_GRAPH_CLIENT_SECRET=""
SPACES_MODE="spaces"
5 changes: 5 additions & 0 deletions nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,11 @@ export default defineNuxtConfig({
runtimeConfig: {
internalSecret: process.env.INTERNAL_SECRET,
datoApiToken: process.env.DATO_API_TOKEN,
microsoftGraph: {
tenantId: '096e524d-6929-4030-8cd3-8ab42de0887b',
clientId: process.env.MICROSOFT_GRAPH_CLIENT_ID,
clientSecret: process.env.MICROSOFT_GRAPH_CLIENT_SECRET,
},
kafkaConfig: {
url: process.env.KAFKA_URL,
username: process.env.KAFKA_USERNAME,
Expand Down
Loading

0 comments on commit cd17215

Please sign in to comment.