Vite Env parametreleri değişikliği test edilecek.

This commit is contained in:
Sedat Öztürk 2025-08-16 14:11:07 +03:00
parent 53203d2d7c
commit 156da57f57
6 changed files with 0 additions and 1295 deletions

10
ui/.env
View file

@ -1,14 +1,4 @@
APPLICATION_BASEURL='http://localhost:4200'
APPLICATION_NAME='Platform'
APPLICATION_LOGOURL=''
OAUTH_ISSUER='https://localhost:44344/'
OAUTH_REDIRECTURI='http://localhost:4200'
OAUTH_CLIENTID='Platform_App'
OAUTH_RESPONSETYPE='code'
OAUTH_SCOPE='offline_access Platform'
OAUTH_REQUIREHTTPS=true
VITE_API_URL='https://localhost:44344' VITE_API_URL='https://localhost:44344'
API_ROOTNAMESPACE='Kurs.Platform'
VITE_CDN_URL='http://localhost:4005' VITE_CDN_URL='http://localhost:4005'
VITE_REACT_APP_VERSION=$npm_package_version VITE_REACT_APP_VERSION=$npm_package_version
VITE_AI_URL='https://ai.sozsoft.com/webhook/' VITE_AI_URL='https://ai.sozsoft.com/webhook/'

View file

@ -1,12 +1,2 @@
APPLICATION_BASEURL='https://dev.sozsoft.com'
APPLICATION_NAME='Platform'
APPLICATION_LOGOURL=''
OAUTH_ISSUER='https://dev-api.sozsoft.com'
OAUTH_REDIRECTURI='https://dev.sozsoft.com'
OAUTH_CLIENTID='Platform_App'
OAUTH_RESPONSETYPE='code'
OAUTH_SCOPE='offline_access Platform'
OAUTH_REQUIREHTTPS=true
VITE_API_URL='https://dev-api.sozsoft.com' VITE_API_URL='https://dev-api.sozsoft.com'
API_ROOTNAMESPACE='Kurs.Platform'
VITE_CDN_URL='https://dev-cdn.sozsoft.com' VITE_CDN_URL='https://dev-cdn.sozsoft.com'

View file

@ -1,12 +1,2 @@
APPLICATION_BASEURL='https://sozsoft.com'
APPLICATION_NAME='Platform'
APPLICATION_LOGOURL=''
OAUTH_ISSUER='https://api.sozsoft.com'
OAUTH_REDIRECTURI='https://sozsoft.com'
OAUTH_CLIENTID='Platform_App'
OAUTH_RESPONSETYPE='code'
OAUTH_SCOPE='offline_access Platform'
OAUTH_REQUIREHTTPS=true
VITE_API_URL='https://api.sozsoft.com' VITE_API_URL='https://api.sozsoft.com'
API_ROOTNAMESPACE='Kurs.Platform'
VITE_CDN_URL='https://cdn.sozsoft.com' VITE_CDN_URL='https://cdn.sozsoft.com'

1254
ui/package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -81,7 +81,6 @@
"browserslist": "^4.25.2", "browserslist": "^4.25.2",
"caniuse-lite": "^1.0.30001734", "caniuse-lite": "^1.0.30001734",
"cssnano": "^6.0.1", "cssnano": "^6.0.1",
"dotenv": "^16.0.3",
"eslint": "^8.36.0", "eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0", "eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-alias": "^1.1.2", "eslint-import-resolver-alias": "^1.1.2",

10
ui/src/vite-env.d.ts vendored
View file

@ -1,17 +1,7 @@
/// <reference types="vite/client" /> /// <reference types="vite/client" />
interface ImportMetaEnv { interface ImportMetaEnv {
readonly APPLICATION_BASEURL: string
readonly APPLICATION_NAME: string
readonly APPLICATION_LOGOURL: string
readonly OAUTH_ISSUER: string
readonly OAUTH_REDIRECTURI: string
readonly OAUTH_CLIENTID: string
readonly OAUTH_RESPONSETYPE: string
readonly OAUTH_SCOPE: string
readonly OAUTH_REQUIREHTTPS: boolean
readonly VITE_API_URL: string readonly VITE_API_URL: string
readonly API_ROOTNAMESPACE: string
readonly VITE_CDN_URL: string readonly VITE_CDN_URL: string
readonly VITE_REACT_APP_VERSION: string readonly VITE_REACT_APP_VERSION: string
readonly VITE_AI_URL: string readonly VITE_AI_URL: string