-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
efe1284
commit 96540e7
Showing
45 changed files
with
71,731 additions
and
2,224 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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# next-auth | ||
# ! do not forget to add a secret. NextAuth can handle without it in development mode, | ||
# ! but it won't in production! | ||
# ? https://next-auth.js.org/configuration/options#secret | ||
PORT=3000 | ||
NEXTAUTH_SECRET=5QjioebBMjaQnaPWIvXz56j8rKf/bZ/SQgYLwHFf40I= | ||
NEXTAUTH_URL=http://localhost:$PORT | ||
# Plausible | ||
NEXT_PUBLIC_PLAUSIBLE_DOMAIN=staging.fora.dev-vizzuality.com | ||
# API Url. Depending on the environment we will use different urls. | ||
NEXT_PUBLIC_API_URL=https://staging.fora.dev-vizzuality.com/sub-path/backend/api/v1 | ||
#NEXT_PUBLIC_API_URL_FAKE=https://jsonplaceholder.typicode.com | ||
|
||
# Google Analytics tracking ID. If you're working with an Google Analytics 4 property, you have a Measurement ID instead of a Tracking ID. | ||
NEXT_PUBLIC_GA_TRACKING_ID=UA-000000-2 | ||
NEXT_PUBLIC_BASE_PATH="" | ||
|
||
NEXT_PUBLIC_URL=http://localhost:$PORT | ||
|
||
SECRET_TOKEN=fowz3MvhK9hQWaLPAfsAjvSf3851PAfL |
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
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 |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
"id": 8739, | ||
"name": "Jane", | ||
"email": "[email protected]" | ||
} | ||
} |
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 |
---|---|---|
|
@@ -229,4 +229,4 @@ | |
"bs": "target end-to-end models" | ||
} | ||
} | ||
] | ||
] |
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 |
---|---|---|
|
@@ -5,5 +5,5 @@ | |
"types": ["cypress", "node"], | ||
"isolatedModules": false | ||
}, | ||
"include": ["**/*.ts"], | ||
"include": ["**/*.ts"] | ||
} |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
describe('Unit test example', () => { | ||
it('should work', () => { | ||
expect([]).to.deep.equal([]); | ||
}) | ||
}); | ||
}); |
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
version: "3.9" # optional since v1.27.0 | ||
version: '3.9' # optional since v1.27.0 | ||
services: | ||
app: | ||
build: . | ||
ports: | ||
- "3000:3000" | ||
- '3000:3000' |
Oops, something went wrong.