Skip to content

Commit

Permalink
Merge pull request #122 from ryo4004/add-typescript
Browse files Browse the repository at this point in the history
コードを再構築
  • Loading branch information
ryo4004 authored Mar 29, 2023
2 parents 4386bc9 + 925d647 commit aafd156
Show file tree
Hide file tree
Showing 455 changed files with 22,213 additions and 26,708 deletions.
4 changes: 4 additions & 0 deletions .env.example.development
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
REACT_APP_AUTH_API_URL=http://localhost:3003
REACT_APP_APP_API_URL=http://localhost:3007
REACT_APP_SCORE_API_URL=http://localhost:3005
REACT_APP_API_PATH=https://api.winds-n.com
4 changes: 4 additions & 0 deletions .env.example.production
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
REACT_APP_AUTH_API_URL=https://auth.winds-n.com
REACT_APP_APP_API_URL=https://app.winds-n.com
REACT_APP_SCORE_API_URL=https://score.winds-n.com
REACT_APP_API_PATH=https://api.winds-n.com
32 changes: 0 additions & 32 deletions .eslintrc-client.json

This file was deleted.

17 changes: 0 additions & 17 deletions .eslintrc-server.json

This file was deleted.

12 changes: 7 additions & 5 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,16 @@ jobs:

strategy:
matrix:
node-version: [12.16.3]
node-version: [18.14.0]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: yarn install
- run: yarn run lint
- run: yarn run build-prod
- run: yarn lint
- run: yarn typecheck
- run: yarn prettiercheck
- run: yarn build
26 changes: 22 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,26 @@
# See https://help.github.com/ignore-files/ for more about ignoring files.
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

client/build/bundle.js
client/build/bundle.js.map
*.css
# testing
/coverage

# production
/build

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*

# env
.env
2 changes: 1 addition & 1 deletion .node-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v12.16.3
18.14.0
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,4 +68,4 @@ Expressサーバが起動します。

### ウィンズスコア

`score.winds-n.com`を参照
`score.winds-n.com`を参照
55 changes: 0 additions & 55 deletions app.js

This file was deleted.

49 changes: 0 additions & 49 deletions client/build/index.html

This file was deleted.

Empty file removed client/build/sw.js
Empty file.
Loading

0 comments on commit aafd156

Please sign in to comment.