Skip to content

Commit 2f8eeb6

Browse files
committed
initial public commit
0 parents  commit 2f8eeb6

File tree

134 files changed

+21242
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

134 files changed

+21242
-0
lines changed

.dockerignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules/
2+
build/

.env.example

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
REACT_APP_API_URL=https://localhost:28889

.eslintignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# don't ever lint node_modules
2+
node_modules
3+
# don't lint build output (make sure it's set to your correct build folder name)
4+
dist
5+
build

.eslintrc.js

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
module.exports = {
2+
"env": {
3+
"node": true
4+
},
5+
rules: {
6+
"@typescript-eslint/no-non-null-assertion": "off",
7+
"@typescript-eslint/no-explicit-any": "off",
8+
"@typescript-eslint/no-var-requires": "off",
9+
"@typescript-eslint/no-empty-function": "off",
10+
"@typescript-eslint/ban-ts-comment": "off",
11+
"quotes": [2, "double", { "avoidEscape": true }],
12+
},
13+
root: true,
14+
parser: "@typescript-eslint/parser",
15+
plugins: [
16+
"@typescript-eslint",
17+
"jest",
18+
],
19+
extends: [
20+
"eslint:recommended",
21+
"plugin:@typescript-eslint/recommended",
22+
],
23+
};

.github/workflows/ci.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
branches: [main]
8+
9+
jobs:
10+
build:
11+
strategy:
12+
matrix:
13+
platform: [ubuntu-latest]
14+
node-version: [12.x]
15+
16+
runs-on: ${{ matrix.platform }}
17+
18+
steps:
19+
- name: Use Node.js ${{ matrix.node-version }}
20+
uses: actions/setup-node@v1
21+
with:
22+
node-version: ${{ matrix.node-version }}
23+
24+
- name: Check out code
25+
uses: actions/checkout@v2
26+
27+
- name: Install dependencies
28+
run: yarn
29+
30+
- name: Lint
31+
run: yarn lint
32+
33+
- name: Test
34+
run: yarn test

.gitignore

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.js
7+
8+
# testing
9+
/coverage
10+
11+
# production
12+
/build
13+
14+
# misc
15+
.DS_Store
16+
.env
17+
.env.local
18+
.env.development.local
19+
.env.test.local
20+
.env.production.local
21+
/src/react-app-env.d.ts
22+
23+
npm-debug.log*
24+
yarn-debug.log*
25+
yarn-error.log*
26+
.vscode/

.yarnrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
network-timeout 600000

0 commit comments

Comments
 (0)