generated from openedx/frontend-template-application
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.site.config.tsx
36 lines (34 loc) · 1.46 KB
/
test.site.config.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import { EnvironmentTypes, ProjectSiteConfig } from '@openedx/frontend-base';
const config: ProjectSiteConfig = {
apps: [],
ACCESS_TOKEN_COOKIE_NAME: 'edx-jwt-cookie-header-payload',
BASE_URL: 'http://localhost:8080',
ACCOUNT_PROFILE_URL: 'http://localhost:1995',
CREDENTIALS_BASE_URL: 'http://localhost:18150',
CSRF_TOKEN_API_PATH: '/csrf/api/v1/token',
ECOMMERCE_BASE_URL: 'http://localhost:18130',
LANGUAGE_PREFERENCE_COOKIE_NAME: 'openedx-language-preference',
LMS_BASE_URL: 'http://localhost:18000',
LOGIN_URL: 'http://localhost:18000/login',
LOGOUT_URL: 'http://localhost:18000/logout',
LOGO_URL: 'https://edx-cdn.org/v3/default/logo.svg',
LOGO_TRADEMARK_URL: 'https://edx-cdn.org/v3/default/logo-trademark.svg',
LOGO_WHITE_URL: 'https://edx-cdn.org/v3/default/logo-white.svg',
FAVICON_URL: 'https://edx-cdn.org/v3/default/favicon.ico',
MARKETING_SITE_BASE_URL: 'http://localhost:18000',
ORDER_HISTORY_URL: 'http://localhost:1996/orders',
REFRESH_ACCESS_TOKEN_API_PATH: '/login_refresh',
SEGMENT_KEY: '',
SITE_NAME: 'localhost',
USER_INFO_COOKIE_NAME: 'edx-user-info',
APP_ID: 'base-test',
ENVIRONMENT: EnvironmentTypes.TEST,
ACCOUNT_SETTINGS_URL: 'http://localhost:1997',
DISCOVERY_API_BASE_URL: 'http://localhost:18381',
IGNORED_ERROR_REGEX: null,
LEARNING_BASE_URL: 'http://localhost:2000',
PUBLIC_PATH: '/',
PUBLISHER_BASE_URL: 'http://localhost:18400',
STUDIO_BASE_URL: 'http://localhost:18010',
};
export default config;