-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* use useForm where it seems useful * Fix: No support for ghcr.io in github actions * Change: Workflow runs on pull request only * Change: Ansible should use git docker package * BUGFIX: Build errors * Update documentation in deployment file * Fix pull_request double * Added build step in dockerfile * Change: Docker image name * update model in services * move model into one file * links instead of router push * Changed node image to alpine and error fix * Fix: Inbox view and labels. Bugs #56 also #47 * Updated start script with relative path alpine * Reset image to node14 because of node env issue * Address #57 and fix wrong component name * Refactoring navigation extracted to own component * Added shipping order form link #18 * Fixes #59 * Add basic page and form for shipment tracking * Basis-layout ohne Abfrage * Minor UI changes * Wired inputs and status widget to query params * Dockerignore ergänzt #47 * Fix: Added Add Goods Button. Bug #47 * Fixed imports * Added mockups auditor view * Added drawio file as diagram source for wireframes * fixed Add-Goods-Button * Mockups updated and extended with alerts screen * Added jest as test framework * Created Modules * Fix Abhängigkeiten babel-jest und config-Dateien * Changed transaction ordering to match story * Fixed wrong wireframe * Times adjusted to reflect realistic scenario Co-authored-by: Andreas Huber <j7ha0873@unibw.de> Co-authored-by: Razvan Hrestic <razvanhrestic@INF8-MBHRESTIC.local> Co-authored-by: Razvan Hrestic <razvanhrestic@INF8-MBHRESTIC.fritz.box> Co-authored-by: devF4B1J <fabian.jost.1998@googlemail.com>
- Loading branch information
1 parent
f516ab8
commit 59e53c0
Showing
79 changed files
with
26,308 additions
and
4,344 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,3 @@ | ||
{ | ||
"presets": ["next/babel"] | ||
} |
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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
.next/ | ||
node_modules/ | ||
Dockerfile | ||
.env* | ||
.env* | ||
*test* |
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,3 @@ | ||
{ | ||
"git.ignoreLimitWarning": true | ||
} |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
NEXT_PUBLIC_COMPANY_NAME=BrangusMSP | ||
NEXT_PUBLIC_COMPANY_NAME=DeoniMSP | ||
NEXT_PUBLIC_API_URL=http://137.193.65.47:8080 | ||
NEXT_PUBLIC_USE_MOCKED_BACKEND=FALSE | ||
NEXT_PUBLIC_PROMETHEUS_API_URL=http://137.193.65.44:9090 |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Large diffs are not rendered by default.
Oops, something went wrong.
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,18 @@ | ||
module.exports = { | ||
collectCoverageFrom: [ | ||
'**/*.{js,jsx,ts,tsx}', | ||
'!**/*.d.ts', | ||
'!**/node_modules/**', | ||
], | ||
testPathIgnorePatterns: ['/node_modules/', '/.next/'], | ||
transform: { | ||
'^.+\\.(js|jsx|ts|tsx)$': './node_modules/babel-jest' | ||
}, | ||
transformIgnorePatterns: [ | ||
'/node_modules/', | ||
'^.+\\.module\\.(css|sass|scss)$', | ||
], | ||
moduleNameMapper: { | ||
'^.+\\.module\\.(css|sass|scss)$': 'identity-obj-proxy', | ||
}, | ||
} |
Oops, something went wrong.