User --all requests--> LoadBalancer
LoadBalancer --authenticated requests--> jwtmiddleware
jwtMiddleware --get user--> DB
DB --user--> jwtMiddleware
jwtMiddleware --validJWTUser--> rbacMiddleware
rbacMiddleware --authorizedUser--> endpointHandler
endpointHandler --result--> User
Avinstallera Docker Desktop:
- Välj Troubleshoot från menyn
- Klicka på Uninstall valet i dialogen som dyker upp Installera colima
brew install docker
brew install colima
[[ $(uname -m) == "arm64" ]] && curl -L --create-dirs https://github.com/docker/buildx/releases/download/v0.7.1/buildx-v0.7.1.darwin-arm64 --output ~/.docker/cli-plugins/docker-buildx && chmod +x ~/.docker/cli-plugins/docker-buildx
chmod +x ~/.docker/cli-plugins/docker-buildx
colima start
# Colima tar lång tid, 20 min typ har rapporterats, för mig tog det 2 minuter. ☕
MIT License | |
Copyright (c) 2015 - present Stefan Wallin | |
All rights reserved. | |
Permission is hereby granted, free of charge, to any person obtaining a copy | |
of this software and associated documentation files (the "Software"), to deal | |
in the Software without restriction, including without limitation the rights | |
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
I hereby claim:
- I am stefanwallin on github.
- I am stefan_wallin (https://keybase.io/stefan_wallin) on keybase.
- I have a public key ASCt8QiLBDzHRzjy0V0PvNTeOqG_lW_eFB8lv-YkPpmptgo
To claim this, I am signing this object:
The following debugging information was generated by Atom Beautify
on Wed Jan 29 2020 15:17:33 GMT+0100 (CET)
.
export default class AnySuccessfulPromise { | |
constructor(promises) { | |
this.promises = promises; | |
this.successes = []; | |
this.errors = []; | |
this.thenCallbacks = []; | |
this.catchCallback = () => { | |
console.error("catch not defined"); | |
}; | |
this.finallyCallbacks = []; |
class AnyPromise { | |
constructor(promises) { | |
this.promises = promises; | |
this.successes = []; | |
this.errors = []; | |
this.thenCallback = () => { console.error('then not defined'); }; | |
this.catchCallback = () => { console.error('catch not defined'); }; | |
this.finallyCallback = () => {}; | |
this.awaitPromises(); | |
} |
The hierarchic relation between regions(län) and municipalities(kommuner) represented as JSON. It's derived from the SCB(The Swedish Central Board of Statistics) XLS-file at http://www.scb.se/sv_/Hitta-statistik/Regional-statistik-och-kartor/Regionala-indelningar/Lan-och-kommuner/Lan-och-kommuner-i-kodnummerordning/ as it existed on 2017-06-05.
Den hierarkiska strukturen mellan län och kommuner representerad som JSON. Den är skapad utifrån SCB's XLS-fil på http://www.scb.se/sv_/Hitta-statistik/Regional-statistik-och-kartor/Regionala-indelningar/Lan-och-kommuner/Lan-och-kommuner-i-kodnummerordning/