Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 21 additions & 21 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
env:
browser: true
es2021: true
extends:
- 'plugin:react/recommended'
- standard
parserOptions:
ecmaFeatures:
jsx: true
ecmaVersion: 12
sourceType: module
plugins:
- react
rules: {
"indent": [
"error",
4, {
"SwitchCase": 1
}
]
}
env:
browser: true
es2021: true
extends:
- 'plugin:react/recommended'
- standard
parserOptions:
ecmaFeatures:
jsx: true
ecmaVersion: 12
sourceType: module
plugins:
- react
rules: {
"indent": [
"error",
4, {
"SwitchCase": 1
}
]
}
22 changes: 11 additions & 11 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
## 関連リンク
<!-- 対応する issue など -->

## やったこと(変更点)
<!-- このプルリクで何をしたのかを書きましょう -->

## スクリーンショット
<!-- 変更点を分かりやすく伝えるための画像 -->

## その他
<!-- レビュワーへの参考情報(実装上の懸念点や注意点などあれば記載) -->
## 関連リンク
<!-- 対応する issue など -->
## やったこと(変更点)
<!-- このプルリクで何をしたのかを書きましょう -->
## スクリーンショット
<!-- 変更点を分かりやすく伝えるための画像 -->
## その他
<!-- レビュワーへの参考情報(実装上の懸念点や注意点などあれば記載) -->
48 changes: 24 additions & 24 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
**/node_modules
/.pnp
.pnp.js

# 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*

# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# dependencies
**/node_modules
/.pnp
.pnp.js
# 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*
.eslintrc.yml
74 changes: 37 additions & 37 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,37 +1,37 @@
# アツトク
お店などで唐突に行われるセール情報やクーポン情報をリアルタイムで取得するサービスです。
自分の欲しい商品のジャンルでソートしたり、現在地から特定の範囲のみの店情報を表示したり、情報の表示量をユーザの好みに合わせて自由に設定することが可能になっている。

## サービスについて
### 機能
- 商品情報をジャンルに分けてフィルタリングします
- 現在地から特定の範囲のみの情報を表示する

### UI
figmaで作成したものを参照してください。
[こちら](https://www.figma.com/file/iXiwjDNgdgQj4xUEnlwIVc/Atsutoku-UI?node-id=14%3A8)

### 使用プラットフォーム
webブラウザ

### 開発言語
JavaScript
> フレームワークでReactを使用

## 起動方法
まずはこのリポジトリをCloneもしくはforkしてください
- Clone
`git clone https://github.com/daikimare/atsutoku.git`

- fork
[GitHub](https://github.com/daikimare/atsutoku.git)へ移動し右上のforkを押してください。それ以降はCloneとおなしです。

リポジトリをローカル環境に取り込めましたらパッケージをインストールした後に起動します。
- パッケージのインストール
npmユーザ:`npm install`
yarnユーザ:`yarn`

- 起動
`npm start`
`yarn start`

# アツトク
お店などで唐突に行われるセール情報やクーポン情報をリアルタイムで取得するサービスです。
自分の欲しい商品のジャンルでソートしたり、現在地から特定の範囲のみの店情報を表示したり、情報の表示量をユーザの好みに合わせて自由に設定することが可能になっている。
## サービスについて
### 機能
- 商品情報をジャンルに分けてフィルタリングします
- 現在地から特定の範囲のみの情報を表示する
### UI
figmaで作成したものを参照してください。
[こちら](https://www.figma.com/file/iXiwjDNgdgQj4xUEnlwIVc/Atsutoku-UI?node-id=14%3A8)
### 使用プラットフォーム
webブラウザ
### 開発言語
JavaScript
> フレームワークでReactを使用
## 起動方法
まずはこのリポジトリをCloneもしくはforkしてください
- Clone
`git clone https://github.com/daikimare/atsutoku.git`
- fork
[GitHub](https://github.com/daikimare/atsutoku.git)へ移動し右上のforkを押してください。それ以降はCloneとおなしです。
リポジトリをローカル環境に取り込めましたらパッケージをインストールした後に起動します。
- パッケージのインストール
npmユーザ:`npm install`
yarnユーザ:`yarn`
- 起動
`npm start`
`yarn start`
Loading