Skip to content

Commit f2b38dd

Browse files
committed
Change to material design
1 parent e9d4872 commit f2b38dd

Some content is hidden

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

49 files changed

+14258
-0
lines changed

.browserslistrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
> 1%
2+
last 2 versions
3+
not ie <= 8

.eslintrc.js

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
module.exports = {
2+
root: true,
3+
env: {
4+
node: true
5+
},
6+
'extends': [
7+
'plugin:vue/essential',
8+
'eslint:recommended'
9+
],
10+
rules: {
11+
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
12+
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
13+
},
14+
parserOptions: {
15+
parser: 'babel-eslint'
16+
}
17+
}

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: "[BUG]"
5+
labels: bug
6+
assignees: ''
7+
8+
---
9+
10+
## Summary
11+
> Write the actual behavior and the purpose to modify.
12+
13+
## Cause
14+
> Why such a problem happened?
15+
16+
### To reproduce
17+
Perform the follwing steps to reproduce the problem.
18+
19+
1.
20+
1.
21+
22+
## Expected behavior
23+
Expected the follwing behavior.
24+
25+
## How to deal with this issue
26+
> How do you fix it?
27+
28+
## Notes
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: "[NEW]"
5+
labels: enhancement
6+
assignees: ''
7+
8+
---
9+
10+
## Purpose
11+
> What is it necessary for?
12+
13+
## Expected behavior
14+
Expected the follwing behavior.
15+
16+
## How to deal with this issue
17+
> How do you fix it?
18+
19+
## Notes

.github/pull_request_template.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
### Fixes #[ISSUE NUMBER].
2+
3+
Changes proposed in this pull request:
4+
5+
- ...
6+
- ...
7+
- ...
8+
9+
by [YOUR NAME]

.github/workflows/check.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: check
2+
3+
on:
4+
pull_request:
5+
branches: [ master ]
6+
7+
jobs:
8+
check:
9+
name: check
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v2
13+
- name: eslint review
14+
uses: reviewdog/action-eslint@v1
15+
with:
16+
github_token: ${{ secrets.github_token }}
17+
reporter: github-pr-review
18+
eslint_flags: 'src/**/*.{vue,js}'

.github/workflows/release.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: release
2+
on:
3+
push:
4+
tags:
5+
- "v[0-9]+.[0-9]+.[0-9]+"
6+
jobs:
7+
Release:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v2
11+
with:
12+
fetch-depth: 50
13+
- uses: notlmn/release-with-changelog@v3
14+
with:
15+
token: ${{ secrets.GITHUB_TOKEN }}
16+
exclude: '^polish|^bump|^typo'
17+
commit-template: '- {hash} {title}'
18+
template: |
19+
### Changelog
20+
21+
{commits}

.gitignore

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
.DS_Store
2+
node_modules
3+
/dist
4+
5+
# local env files
6+
.env.local
7+
.env.*.local
8+
9+
# Log files
10+
npm-debug.log*
11+
yarn-debug.log*
12+
yarn-error.log*
13+
14+
# Editor directories and files
15+
.idea
16+
.vscode
17+
*.suo
18+
*.ntvs*
19+
*.njsproj
20+
*.sln
21+
*.sw?

CONTRIBUTING.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Contribution
2+
## Preface
3+
Thank you for considering contributing to this sample application.
4+
I would like to create the sample application such as helpful when you would like to develop a web application using golang.
5+
6+
## How to report a bug
7+
Please create a issue which wrote about the following points when you report a bug.
8+
9+
1. Version of golang you are using
10+
1. Operating system you are using
11+
1. Reprocedure
12+
1. Expected behavior
13+
14+
Also, please write about it when you know the causes and how to fix the bug.
15+
16+
1. Cause
17+
1. How to fix
18+
19+
## How to suggest a feature or enhancement
20+
Please create a issue which wrote that purpose and expected behavior, when you have functions which you would like to implement as a sample.
21+
22+
1. Purpose
23+
1. Expected behavoir, What kind of function do you propose?
24+
1. How to develop
25+
26+
## How to create a pull request
27+
You can feel free to fork this repository, fix the source code and create a pull request when you have noticed that you can resolve a issue.
28+
And after that, please check passed the check workflow of GitHub Action.
29+
30+
I will check your pull request, and I may suggest some improvements or alternatives.
31+
If there was no problem, I will merge your changes.

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2021 ybkuroki
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

0 commit comments

Comments
 (0)