Skip to content

Commit fa7ce56

Browse files
committed
deploy: 0.3.0
1 parent 2179eb1 commit fa7ce56

File tree

830 files changed

+34783
-28087
lines changed

Some content is hidden

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

830 files changed

+34783
-28087
lines changed

.babelrc

-17
This file was deleted.

.dockerignore

+6-26
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,6 @@
1-
# config
2-
.eslintrc.json
3-
.prettierrc
4-
.env
5-
6-
# test, docs, pipeline
7-
.github
8-
coverage
9-
.storybook
10-
docs
11-
LICENSE
12-
*.md
13-
example
14-
15-
# build
16-
dist
17-
.next
18-
19-
# etc
20-
README.md
21-
.gitignore
22-
Dockerfile
23-
*.log
24-
node_modules
25-
docker-compose.yml
26-
app
1+
**/node_modules
2+
**/.next
3+
**/.turbo
4+
**/dist
5+
**/.env*
6+
!apps/web/.env.build

.eslintignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
jest.config.*
2+
openapi.type.ts
3+
api.type.ts

.eslintrc.js

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module.exports = {
2+
root: true,
3+
};

.eslintrc.json

-5
This file was deleted.

.github/ISSUE_TEMPLATE/issue.md

-10
This file was deleted.

.github/workflows/build-docker.yml

-42
This file was deleted.

.gitignore

+34-38
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,42 @@
1-
# compiled output
2-
/dist
3-
/build
4-
/node_modules
5-
6-
# Logs
7-
logs
8-
*.log
9-
npm-debug.log*
10-
yarn-debug.log*
11-
yarn-error.log*
12-
lerna-debug.log*
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
132

14-
# OS
15-
.DS_Store
3+
# dependencies
4+
node_modules
5+
.pnp
6+
.pnp.js
7+
8+
# testing
9+
coverage
1610

17-
# Tests
18-
/coverage
19-
/.nyc_output
11+
# next.js
12+
.next/
13+
out/
14+
build
2015

21-
# IDEs and editors
22-
/.idea
23-
.project
24-
.classpath
25-
.c9/
26-
*.launch
27-
.settings/
28-
*.sublime-workspace
16+
# misc
17+
.DS_Store
18+
*.pem
19+
20+
# debug
21+
npm-debug.log*
22+
yarn-debug.log*
23+
yarn-error.log*
24+
.pnpm-debug.log*
2925

30-
# IDE - VSCode
31-
.vscode/*
32-
!.vscode/settings.json
33-
!.vscode/tasks.json
34-
!.vscode/launch.json
35-
!.vscode/extensions.json
26+
# local env files
27+
.env.local
28+
.env.development.local
29+
.env.test.local
30+
.env.production.local
3631

37-
.env
38-
.next
32+
# turbo
33+
.turbo
3934

40-
docker-compose.y*ml
35+
# .env
36+
.env*
37+
!.env.example
38+
!.env.build
4139

42-
/app
43-
/data
4440

45-
config.yaml
46-
ormconfig.json
41+
.vscode
42+
volumes

.prettierignore

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
migrations
2+
3+
openapi.type.ts
4+
api.type.ts
5+
6+
dist
7+
.next
8+
9+
volumes
10+
11+
node_modules

.prettierrc

+5-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
{
2-
"printWidth": 80,
32
"singleQuote": true,
4-
"semi": false,
5-
"bracketSpacing": true,
6-
"arrowParens": "always",
7-
"trailingComma": "none",
8-
"jsxSingleQuote": true
3+
"trailingComma": "all",
4+
"importOrder": ["<THIRD_PARTY_MODULES>", "^@/(.*)$", "^[./]", "^[../]"],
5+
"importOrderSeparation": true,
6+
"importOrderSortSpecifiers": true,
7+
"importOrderParserPlugins": ["typescript", "jsx", "decorators-legacy"]
98
}

CODE_OF_CONDUCT.md

+13-14
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
# Contributor Covenant Code of Conduct
32

43
## Our Pledge
@@ -18,23 +17,23 @@ diverse, inclusive, and healthy community.
1817
Examples of behavior that contributes to a positive environment for our
1918
community include:
2019

21-
* Demonstrating empathy and kindness toward other people
22-
* Being respectful of differing opinions, viewpoints, and experiences
23-
* Giving and gracefully accepting constructive feedback
24-
* Accepting responsibility and apologizing to those affected by our mistakes,
20+
- Demonstrating empathy and kindness toward other people
21+
- Being respectful of differing opinions, viewpoints, and experiences
22+
- Giving and gracefully accepting constructive feedback
23+
- Accepting responsibility and apologizing to those affected by our mistakes,
2524
and learning from the experience
26-
* Focusing on what is best not just for us as individuals, but for the
25+
- Focusing on what is best not just for us as individuals, but for the
2726
overall community
2827

2928
Examples of unacceptable behavior include:
3029

31-
* The use of sexualized language or imagery, and sexual attention or
30+
- The use of sexualized language or imagery, and sexual attention or
3231
advances of any kind
33-
* Trolling, insulting or derogatory comments, and personal or political attacks
34-
* Public or private harassment
35-
* Publishing others' private information, such as a physical or email
32+
- Trolling, insulting or derogatory comments, and personal or political attacks
33+
- Public or private harassment
34+
- Publishing others' private information, such as a physical or email
3635
address, without their explicit permission
37-
* Other conduct which could reasonably be considered inappropriate in a
36+
- Other conduct which could reasonably be considered inappropriate in a
3837
professional setting
3938

4039
## Enforcement Responsibilities
@@ -107,7 +106,7 @@ Violating these terms may lead to a permanent ban.
107106
### 4. Permanent Ban
108107

109108
**Community Impact**: Demonstrating a pattern of violation of community
110-
standards, including sustained inappropriate behavior, harassment of an
109+
standards, including sustained inappropriate behavior, harassment of an
111110
individual, or aggression toward or disparagement of classes of individuals.
112111

113112
**Consequence**: A permanent ban from any sort of public interaction within
@@ -119,11 +118,11 @@ This Code of Conduct is adapted from the [Contributor Covenant][homepage],
119118
version 2.0, available at
120119
[https://www.contributor-covenant.org/version/2/0/code_of_conduct.html][v2.0].
121120

122-
Community Impact Guidelines were inspired by
121+
Community Impact Guidelines were inspired by
123122
[Mozilla's code of conduct enforcement ladder][Mozilla CoC].
124123

125124
For answers to common questions about this code of conduct, see the FAQ at
126-
[https://www.contributor-covenant.org/faq][FAQ]. Translations are available
125+
[https://www.contributor-covenant.org/faq][FAQ]. Translations are available
127126
at [https://www.contributor-covenant.org/translations][translations].
128127

129128
[homepage]: https://www.contributor-covenant.org

CONTRIBUTING.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
# How to contribute to user-feedback
1+
# How to contribute to ABC User Feedback
22

3-
First of all, thank you so much for taking your time to contribute! abc-notification-kmm is not very different from any other open source projects. It will be fantastic if you help us by doing any of the following:
3+
First of all, thank you so much for taking your time to contribute! ABC User Feedback is not very different from any other open source projects. It will be fantastic if you help us by doing any of the following:
44

5-
- File an issue in [the issue tracker](https://github.com/line/user-feedback/issues)
5+
- File an issue in [the issue tracker](https://github.com/line/abc-user-feedback/issues)
66
to report bugs and propose new features and improvements.
7-
- Ask a question using [the issue tracker](https://github.com/line/user-feedback/issues).
8-
- Contribute your work by sending [a pull request](https://github.com/line/user-feedback/pulls).
7+
- Ask a question using [the issue tracker](https://github.com/line/abc-user-feedback/issues).
8+
- Contribute your work by sending [a pull request](https://github.com/line/abc-user-feedback/pulls).
99

1010
## Contributor license agreement
1111

1212
If you are sending a pull request and it's a non-trivial change beyond fixing
13-
typos, please make sure to sign the [ICLA (Individual Contributor License Agreement)](https://cla-assistant.io/line/user-feedback).
13+
typos, please make sure to sign the [ICLA (Individual Contributor License Agreement)](https://cla-assistant.io/line/abc-user-feedback).
1414
Please [contact us](mailto:[email protected]) if you need the CCLA (Corporate Contributor License Agreement).
1515

1616
## Code of conduct

Dockerfile

-34
This file was deleted.

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -199,4 +199,4 @@ Unless required by applicable law or agreed to in writing, software
199199
distributed under the License is distributed on an "AS IS" BASIS,
200200
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201201
See the License for the specific language governing permissions and
202-
limitations under the License.
202+
limitations under the License.

0 commit comments

Comments
 (0)