-
Notifications
You must be signed in to change notification settings - Fork 4
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
Showing
14 changed files
with
56 additions
and
2,485 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 |
---|---|---|
@@ -1,22 +1,22 @@ | ||
# Backend API URL for the Finesse frontend application. | ||
# Example: https://finesse-backend.com | ||
REACT_APP_BACKEND_URL=<Backend-API-URL> | ||
VITE_BACKEND_URL= | ||
|
||
# Base path for the Finesse frontend application. Used for routing. | ||
# Example: finesse-frontend | ||
REACT_APP_BASENAME=<Frontend-Base-Path> | ||
VITE_BASENAME= | ||
|
||
# Boolean flag to enable or disable debug mode for the application. | ||
# When set to True, the application provides a debug panel. | ||
# Defaults to False when not set. Optional. | ||
# Example: True or False | ||
REACT_APP_DEBUG_MODE=<True/False> | ||
VITE_DEBUG_MODE= | ||
|
||
# GitHub API URL for accessing the Finesse data repository. | ||
# This URL is used to fetch data from the specified GitHub repository. | ||
# Example: https://api.github.com/repos/ai-cfia/finesse-data/contents | ||
REACT_APP_GITHUB_API_URL=<GitHub-API-URL> | ||
VITE_GITHUB_API_URL= | ||
|
||
# Default search source. Options: 'ailab', 'azure' and 'static'. | ||
# Default search source. Options: 'ailab', 'azure' and 'static'. | ||
# Optional. Defaults to 'azure'. | ||
# REACT_APP_SEARCH_SOURCE=azure | ||
# VITE_SEARCH_SOURCE= |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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,18 +1,18 @@ | ||
export interface TsAppVersion { | ||
version: string; | ||
name: string; | ||
description?: string; | ||
versionLong?: string; | ||
versionDate: string; | ||
gitCommitHash?: string; | ||
gitCommitDate?: string; | ||
gitTag?: string; | ||
} | ||
version: string; | ||
name: string; | ||
description?: string; | ||
versionLong?: string; | ||
versionDate: string; | ||
gitCommitHash?: string; | ||
gitCommitDate?: string; | ||
gitTag?: string; | ||
}; | ||
export const versions: TsAppVersion = { | ||
version: "0.2.5", | ||
name: "finesse-frontend", | ||
versionDate: "2024-01-31T20:16:06.521Z", | ||
gitCommitHash: "19bd919", | ||
versionLong: "0.2.5-19bd919", | ||
version: '1.0.0', | ||
name: 'finesse-frontend', | ||
versionDate: '2024-02-01T08:57:03.572Z', | ||
gitCommitHash: '03e5cc4', | ||
versionLong: '1.0.0-03e5cc4', | ||
}; | ||
export default versions; |
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
Oops, something went wrong.