forked from jsnbuchanan/crowd-funder-for-time-pwa
13 lines
361 B
TypeScript
13 lines
361 B
TypeScript
/**
|
|
* Generic strings that could be used throughout the app.
|
|
*/
|
|
export enum AppString {
|
|
APP_NAME = "Kick-Start with Time",
|
|
|
|
PROD_ENDORSER_API_SERVER = "https://api.endorser.ch",
|
|
TEST_ENDORSER_API_SERVER = "https://test-api.endorser.ch",
|
|
LOCAL_ENDORSER_API_SERVER = "http://localhost:3000",
|
|
|
|
DEFAULT_ENDORSER_API_SERVER = TEST_ENDORSER_API_SERVER,
|
|
}
|