-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #593 from technologiestiftung/staging
- Loading branch information
Showing
95 changed files
with
3,541 additions
and
4,249 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,9 @@ | |
# The absolute base url | ||
NEXT_PUBLIC_BASE_URL=http://localhost:3000 | ||
|
||
# Supabase will redirect to this url after recovery | ||
NEXT_PUBLIC_RECOVERY_AUTH_REDIRECT_URL=${NEXT_PUBLIC_BASE_URL}/reset-password | ||
|
||
# Mapbox Credentials | ||
NEXT_PUBLIC_MAPBOX_API_KEY=pk.123.xyz | ||
|
||
|
@@ -22,23 +25,17 @@ NEXT_PUBLIC_MAP_INITIAL_LONGITUDE=13.419047 | |
NEXT_PUBLIC_MAP_INITIAL_ZOOM=11 | ||
NEXT_PUBLIC_MAP_INITIAL_ZOOM_MOBILE=13 | ||
|
||
# Auth0 | ||
NEXT_PUBLIC_AUTH0_DOMAIN=myauthzeropath.eu.auth0.com | ||
NEXT_PUBLIC_AUTH0_CLIENT_ID=7479d17d-2212-4a23-a42c-363b898dc618 | ||
NEXT_PUBLIC_AUTH0_AUDIENCE=https://my-tree-api-url.io | ||
# giessdenkiez API | ||
# See https://github.com/technologiestiftung/giessdenkiez-de-postgres-api | ||
NEXT_PUBLIC_SUPABASE_URL=http://localhost:54321 | ||
NEXT_PUBLIC_SUPABASE_ANON_KEY=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZS1kZW1vIiwicm9sZSI6ImFub24iLCJleHAiOjE5ODM4MTI5OTZ9.CRXP1A7WOeoJeXxjNni43kdQwgnWNReilDMblYTn_I0 | ||
NEXT_PUBLIC_API_ENDPOINT=http://localhost:8080 | ||
|
||
# Matomo tracking | ||
NEXT_PUBLIC_MATOMO_SITE_ID=23 | ||
NEXT_PUBLIC_MATOMO_URL=https://piwik.example.com | ||
# User management | ||
# Uses the auth0 management API to create the possibility | ||
# to delete users | ||
# see https://github.com/technologiestiftung/tsb-trees-api-user-management | ||
NEXT_PUBLIC_USER_DATA_API_URL=https://my-user-management-api.io | ||
|
||
# giessdenkiez API | ||
# See https://github.com/technologiestiftung/giessdenkiez-de-postgres-api | ||
NEXT_PUBLIC_API_ENDPOINT=https://localhost:8000/my-local-postgres-api | ||
|
||
# The mail used to send emails to users (recovery, confirm, signup, etc) | ||
NEXT_PUBLIC_FROM_EMAIL=[email protected] | ||
# Disable NextJs telemetry | ||
NEXT_TELEMETRY_DISABLED=1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,19 +4,26 @@ | |
name: Node.js CI | ||
env: | ||
BUILD_TARGET: DEFAULT | ||
NEXT_PUBLIC_SUPABASE_URL: http://localhost:54321 | ||
NEXT_PUBLIC_SUPABASE_ANON_KEY: 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZS1kZW1vIiwicm9sZSI6ImFub24iLCJleHAiOjE5ODM4MTI5OTZ9.CRXP1A7WOeoJeXxjNni43kdQwgnWNReilDMblYTn_I0' | ||
NEXT_PUBLIC_API_ENDPOINT: https://localhost:8000/my-local-postgres-api | ||
NEXT_PUBLIC_USER_DATA_API_URL: https://my-user-management-api.io | ||
NEXT_PUBLIC_AUTH0_AUDIENCE: https://my-tree-api-url.io | ||
NEXT_PUBLIC_AUTH0_CLIENT_ID: 7479d17d-2212-4a23-a42c-363b898dc618 | ||
NEXT_PUBLIC_AUTH0_DOMAIN: myauthzeropath.eu.auth0.com | ||
NEXT_PUBLIC_BASE_URL: http://localhost:3000 | ||
NEXT_PUBLIC_RECOVERY_AUTH_REDIRECT_URL: http://localhost:3000/auth | ||
NEXT_TELEMETRY_DISABLED: '1' | ||
#mapbox related | ||
NEXT_PUBLIC_MAPBOX_TREES_TILESET_LAYER: layer-name-within-tileset | ||
NEXT_PUBLIC_MAPBOX_TREES_TILESET_URL: mapbox://{username}.{tilesetId} | ||
NEXT_PUBLIC_MAP_BOUNDING_BOX: 13.0824446341071,52.3281202651866,13.7682544186827,52.681600197973 | ||
NEXT_PUBLIC_MAPBOX_API_KEY: pk.123.xyz | ||
# if you are not in Berlin change these below | ||
NEXT_PUBLIC_MAP_BOUNDING_BOX: 13.0824446341071,52.3281202651866,13.7682544186827,52.681600197973 | ||
NEXT_PUBLIC_MAP_INITIAL_LATITUDE: 52.500869 | ||
NEXT_PUBLIC_MAP_INITIAL_LONGITUDE: 13.419047 | ||
NEXT_PUBLIC_MAP_INITIAL_ZOOM: 11 | ||
NEXT_PUBLIC_MAP_INITIAL_ZOOM_MOBILE: 13 | ||
# data generated by the harvester | ||
NEXT_PUBLIC_RAIN_DATA_URL: https://tsb-trees.s3.eu-central-1.amazonaws.com/weather_light.geojson.gz | ||
NEXT_PUBLIC_BASE_URL: http://localhost:3000 | ||
NEXT_TELEMETRY_DISABLED: '1' | ||
NODE_ENV: test | ||
NEXT_PUBLIC_FROM_EMAIL: [email protected] | ||
|
||
on: | ||
push: | ||
|
@@ -41,7 +48,6 @@ jobs: | |
build: | ||
runs-on: ubuntu-latest | ||
if: "!contains(github.event.head_commit.message, 'skip ci')" | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Use Node.js from .nvmrc | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -131,3 +131,6 @@ docs/users-stats/token | |
|
||
# Local Netlify folder | ||
.netlify | ||
|
||
# intellij | ||
.idea |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
f29af44
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
giessdenkiez-de – ./
giessdenkiez-de-git-master-technologiestiftung1.vercel.app
giessdenkiez-de-technologiestiftung1.vercel.app
giessdenkiez-de.vercel.app