generated from openedx/frontend-template-application
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initialize open-release/maple.master
- Loading branch information
0 parents
commit 68ffaa2
Showing
50 changed files
with
24,981 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
node_modules | ||
npm-debug.log | ||
README.rst | ||
LICENSE | ||
.babelrc | ||
.eslintignore | ||
.eslintrc.json | ||
.gitignore | ||
.npmignore | ||
commitlint.config.js |
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
NODE_ENV='production' | ||
ACCESS_TOKEN_COOKIE_NAME='' | ||
BASE_URL='' | ||
CREDENTIALS_BASE_URL='' | ||
CSRF_TOKEN_API_PATH='' | ||
ECOMMERCE_BASE_URL='' | ||
LANGUAGE_PREFERENCE_COOKIE_NAME='' | ||
LMS_BASE_URL='' | ||
LOGIN_URL='' | ||
LOGOUT_URL='' | ||
LOGO_URL='' | ||
LOGO_TRADEMARK_URL='' | ||
LOGO_WHITE_URL='' | ||
FAVICON_URL='' | ||
MARKETING_SITE_BASE_URL='' | ||
ORDER_HISTORY_URL='' | ||
REFRESH_ACCESS_TOKEN_ENDPOINT='' | ||
SEGMENT_KEY='' | ||
SITE_NAME='' | ||
USER_INFO_COOKIE_NAME='' |
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
NODE_ENV='development' | ||
PORT=8080 | ||
ACCESS_TOKEN_COOKIE_NAME='edx-jwt-cookie-header-payload' | ||
BASE_URL='http://localhost:8080' | ||
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_ENDPOINT='http://localhost:18000/login_refresh' | ||
SEGMENT_KEY='' | ||
SITE_NAME=localhost | ||
USER_INFO_COOKIE_NAME='edx-user-info' |
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
ACCESS_TOKEN_COOKIE_NAME='edx-jwt-cookie-header-payload' | ||
BASE_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_ENDPOINT='http://localhost:18000/login_refresh' | ||
SEGMENT_KEY='' | ||
SITE_NAME=localhost | ||
USER_INFO_COOKIE_NAME='edx-user-info' |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
coverage/* | ||
dist/ | ||
node_modules/ | ||
jest.config.js |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
const { createConfig } = require('@edx/frontend-build'); | ||
|
||
module.exports = createConfig('eslint'); |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
* @edx/community-engineering |
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: Default CI | ||
on: [push, pull_request] | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
- name: Setup Nodejs | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: 12 | ||
- name: Install dependencies | ||
run: npm ci | ||
- name: Validate package-lock.json changes | ||
run: make validate-no-uncommitted-package-lock-changes | ||
- name: Lint | ||
run: npm run lint | ||
- name: Test | ||
run: npm run test | ||
- name: Build | ||
run: npm run build | ||
- name: i18n_extract | ||
run: npm run i18n_extract | ||
- name: is-es5 | ||
run: npm run is-es5 | ||
- name: Coverage | ||
uses: codecov/codecov-action@v2 |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Run commitlint on the commit messages in a pull request. | ||
|
||
name: Lint Commit Messages | ||
|
||
on: | ||
- pull_request | ||
|
||
jobs: | ||
commitlint: | ||
uses: edx/.github/.github/workflows/commitlint.yml@master |
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
.DS_Store | ||
.eslintcache | ||
.idea | ||
node_modules | ||
npm-debug.log | ||
coverage | ||
module.config.js | ||
|
||
dist/ | ||
src/i18n/transifex_input.json | ||
temp/babel-plugin-react-intl | ||
|
||
### pyenv ### | ||
.python-version | ||
|
||
### Emacs ### | ||
*~ | ||
/temp | ||
/.vscode |
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
.eslintignore | ||
.eslintrc.json | ||
.gitignore | ||
.travis.yml | ||
docker-compose.yml | ||
Dockerfile | ||
Makefile | ||
npm-debug.log | ||
|
||
coverage | ||
node_modules | ||
public |
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
12.22.6 | ||
|
Oops, something went wrong.