-
-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* format readme * update logo * format html * add logo to docs * repository for document and document tokens * add attachments type and repository * autogenerate types via scripts * use autogenerated types * attachment type updates * add insured and quantity fields for items * implement HasID interface for entities * implement label updates for items * implement service update method * WIP item update client side actions * check err on attachment * finish types for basic items editor * remove unused var * house keeping
- Loading branch information
Showing
125 changed files
with
15,708 additions
and
1,873 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
version: 2 | ||
updates: | ||
# Fetch and update latest `npm` packages | ||
- package-ecosystem: npm | ||
directory: "/frontend" | ||
schedule: | ||
interval: daily | ||
time: "00:00" | ||
open-pull-requests-limit: 10 | ||
reviewers: | ||
- hay-kot | ||
assignees: | ||
- hay-kot | ||
commit-message: | ||
prefix: fix | ||
prefix-development: chore | ||
include: scope | ||
- package-ecosystem: gomod | ||
directory: backend | ||
schedule: | ||
interval: daily | ||
time: "00:00" | ||
open-pull-requests-limit: 10 | ||
reviewers: | ||
- hay-kot | ||
assignees: | ||
- hay-kot | ||
commit-message: | ||
prefix: fix | ||
prefix-development: chore | ||
include: scope |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
<!-- | ||
This template provides some ideas of things to include in your PR description. | ||
To start, try providing a short summary of your changes in the Title above. | ||
If a section of the PR template does not apply to this PR, then delete that section. | ||
--> | ||
|
||
## What type of PR is this? | ||
|
||
_(REQUIRED)_ | ||
|
||
<!-- | ||
Delete any of the following that do not apply: | ||
--> | ||
|
||
- bug | ||
- cleanup | ||
- documentation | ||
- feature | ||
|
||
## What this PR does / why we need it: | ||
|
||
_(REQUIRED)_ | ||
|
||
<!-- | ||
What goal is this change working towards? | ||
Provide a bullet pointed summary of how each file was changed. | ||
Briefly explain any decisions you made with respect to the changes. | ||
Include anything here that you didn't include in *Release Notes* | ||
above, such as changes to CI or changes to internal methods. | ||
--> | ||
|
||
## Which issue(s) this PR fixes: | ||
|
||
_(REQUIRED)_ | ||
|
||
<!-- | ||
If this PR fixes one of more issues, list them here. | ||
One line each, like so: | ||
Fixes #123 | ||
Fixes #39 | ||
--> | ||
|
||
## Special notes for your reviewer: | ||
|
||
_(fill-in or delete this section)_ | ||
|
||
<!-- | ||
Is there any particular feedback you would / wouldn't like? | ||
Which parts of the code should reviewers focus on? | ||
--> | ||
|
||
## Testing | ||
|
||
_(fill-in or delete this section)_ | ||
|
||
<!-- | ||
Describe how you tested this change. | ||
--> | ||
|
||
## Release Notes | ||
|
||
_(REQUIRED)_ | ||
<!-- | ||
If this PR makes user facing changes, please describe them here. This | ||
description will be copied into the release notes/changelog, whenever the | ||
next version is released. Keep this section short, and focus on high level | ||
changes. | ||
Put your text between the block. To omit notes, use NONE within the block. | ||
--> | ||
|
||
```release-note | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"editor.codeActionsOnSave": { | ||
"source.fixAll.eslint": true | ||
}, | ||
"yaml.schemas": { | ||
"https://squidfunk.github.io/mkdocs-material/schema.json": "mkdocs.yml" | ||
}, | ||
"explorer.fileNesting.enabled": true, | ||
"explorer.fileNesting.patterns": { | ||
"package.json": "package-lock.json, yarn.lock, .eslintrc.js, tsconfig.json, .prettierrc, .editorconfig, pnpm-lock.yaml, postcss.config.js, tailwind.config.js", | ||
"docker-compose.yml": "Dockerfile, .dockerignore, docker-compose.dev.yml, docker-compose.yml", | ||
"README.md": "LICENSE, SECURITY.md" | ||
} | ||
} |
Oops, something went wrong.