Skip to content

Commit 59f97ff

Browse files
authored
Merge pull request #1 from open-craft/pooja/bb9572-implement-new-mfe
[BB-9572] Implement new MFE
2 parents 5789525 + a5f1f2c commit 59f97ff

29 files changed

+4181
-1873
lines changed

.env.development

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
NODE_ENV='development'
2-
PORT=8080
2+
PORT=2100
33
ACCESS_TOKEN_COOKIE_NAME='edx-jwt-cookie-header-payload'
4-
BASE_URL='http://localhost:8080'
4+
BASE_URL='http://localhost:2100'
55
CREDENTIALS_BASE_URL='http://localhost:18150'
66
CSRF_TOKEN_API_PATH='/csrf/api/v1/token'
77
ECOMMERCE_BASE_URL='http://localhost:18130'
@@ -17,7 +17,7 @@ MARKETING_SITE_BASE_URL='http://localhost:18000'
1717
ORDER_HISTORY_URL='http://localhost:1996/orders'
1818
REFRESH_ACCESS_TOKEN_ENDPOINT='http://localhost:18000/login_refresh'
1919
SEGMENT_KEY=''
20-
SITE_NAME=localhost
20+
SITE_NAME='edX'
2121
USER_INFO_COOKIE_NAME='edx-user-info'
2222
APP_ID=''
2323
MFE_CONFIG_API_URL=''

.github/workflows/ci.yml

+7-8
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
name: Default CI
2-
on:
2+
on:
33
push:
4-
branches:
5-
- 'master'
4+
branches: [main]
65
pull_request:
76
branches:
87
- '**'
@@ -29,8 +28,8 @@ jobs:
2928
run: npm run build
3029
- name: i18n_extract
3130
run: npm run i18n_extract
32-
- name: Coverage
33-
uses: codecov/codecov-action@v4
34-
with:
35-
token: ${{ secrets.CODECOV_TOKEN }}
36-
fail_ci_if_error: true
31+
# - name: Coverage
32+
# uses: codecov/codecov-action@v4
33+
# with:
34+
# token: ${{ secrets.CODECOV_TOKEN }}
35+
# fail_ci_if_error: true

.github/workflows/lockfileversion-check.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@ name: Lockfile Version check
44

55
on:
66
push:
7-
branches:
8-
- master
7+
branches: [main]
98
pull_request:
109

1110
jobs:

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,6 @@ temp/babel-plugin-react-intl
1717
*~
1818
/temp
1919
/.vscode
20+
21+
# Local environment overrides
22+
.env.private

README-template-frontend-app.rst

-265
This file was deleted.

0 commit comments

Comments
 (0)