Skip to content

Commit 95ab14b

Browse files
authored
feat: items-editor (#5)
* 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
1 parent fbc364d commit 95ab14b

File tree

125 files changed

+15708
-1873
lines changed

Some content is hidden

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

125 files changed

+15708
-1873
lines changed

.github/dependabot.yml

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
version: 2
2+
updates:
3+
# Fetch and update latest `npm` packages
4+
- package-ecosystem: npm
5+
directory: "/frontend"
6+
schedule:
7+
interval: daily
8+
time: "00:00"
9+
open-pull-requests-limit: 10
10+
reviewers:
11+
- hay-kot
12+
assignees:
13+
- hay-kot
14+
commit-message:
15+
prefix: fix
16+
prefix-development: chore
17+
include: scope
18+
- package-ecosystem: gomod
19+
directory: backend
20+
schedule:
21+
interval: daily
22+
time: "00:00"
23+
open-pull-requests-limit: 10
24+
reviewers:
25+
- hay-kot
26+
assignees:
27+
- hay-kot
28+
commit-message:
29+
prefix: fix
30+
prefix-development: chore
31+
include: scope

.github/pull_request_template.md

+72
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
<!--
2+
This template provides some ideas of things to include in your PR description.
3+
To start, try providing a short summary of your changes in the Title above.
4+
If a section of the PR template does not apply to this PR, then delete that section.
5+
-->
6+
7+
## What type of PR is this?
8+
9+
_(REQUIRED)_
10+
11+
<!--
12+
Delete any of the following that do not apply:
13+
-->
14+
15+
- bug
16+
- cleanup
17+
- documentation
18+
- feature
19+
20+
## What this PR does / why we need it:
21+
22+
_(REQUIRED)_
23+
24+
<!--
25+
What goal is this change working towards?
26+
Provide a bullet pointed summary of how each file was changed.
27+
Briefly explain any decisions you made with respect to the changes.
28+
Include anything here that you didn't include in *Release Notes*
29+
above, such as changes to CI or changes to internal methods.
30+
-->
31+
32+
## Which issue(s) this PR fixes:
33+
34+
_(REQUIRED)_
35+
36+
<!--
37+
If this PR fixes one of more issues, list them here.
38+
One line each, like so:
39+
Fixes #123
40+
Fixes #39
41+
-->
42+
43+
## Special notes for your reviewer:
44+
45+
_(fill-in or delete this section)_
46+
47+
<!--
48+
Is there any particular feedback you would / wouldn't like?
49+
Which parts of the code should reviewers focus on?
50+
-->
51+
52+
## Testing
53+
54+
_(fill-in or delete this section)_
55+
56+
<!--
57+
Describe how you tested this change.
58+
-->
59+
60+
## Release Notes
61+
62+
_(REQUIRED)_
63+
<!--
64+
If this PR makes user facing changes, please describe them here. This
65+
description will be copied into the release notes/changelog, whenever the
66+
next version is released. Keep this section short, and focus on high level
67+
changes.
68+
Put your text between the block. To omit notes, use NONE within the block.
69+
-->
70+
71+
```release-note
72+
```

.gitignore

+10-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
config.yml
33
homebox.db
44
.idea
5-
.vscode
65

76
.DS_Store
87
test-mailer.json
@@ -35,4 +34,13 @@ backend/.env
3534

3635
# Output Directory for Nuxt/Frontend during build step
3736
backend/app/api/public/*
38-
!backend/app/api/public/.gitkeep
37+
!backend/app/api/public/.gitkeep
38+
39+
node_modules
40+
*.log*
41+
.nuxt
42+
.nitro
43+
.cache
44+
.output
45+
.env
46+
dist

.vscode/settings.json

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"editor.codeActionsOnSave": {
3+
"source.fixAll.eslint": true
4+
},
5+
"yaml.schemas": {
6+
"https://squidfunk.github.io/mkdocs-material/schema.json": "mkdocs.yml"
7+
},
8+
"explorer.fileNesting.enabled": true,
9+
"explorer.fileNesting.patterns": {
10+
"package.json": "package-lock.json, yarn.lock, .eslintrc.js, tsconfig.json, .prettierrc, .editorconfig, pnpm-lock.yaml, postcss.config.js, tailwind.config.js",
11+
"docker-compose.yml": "Dockerfile, .dockerignore, docker-compose.dev.yml, docker-compose.yml",
12+
"README.md": "LICENSE, SECURITY.md"
13+
}
14+
}

0 commit comments

Comments
 (0)