2 |
3 |
4 | What is Heimdallr?
5 |
Heimdall is a stateless password manager
6 |
7 |
8 | You just need to remember one master password and thanks to Heimdallr, based on this master password, you can get a password for any website and account!
9 |
No more writing down tons of different passwords and trying to remember where they are, because they can be generated on the fly.
10 |
11 |
12 |
13 |
14 |
19 |
20 |
--------------------------------------------------------------------------------
/.vscode/launch.json:
--------------------------------------------------------------------------------
1 | {
2 | "version": "0.2.0",
3 | "configurations": [
4 | {
5 | "name": "Heimdallr.Host",
6 | "type": "coreclr",
7 | "request": "launch",
8 | "preLaunchTask": "build-Heimdallr.Host",
9 | "program": "${workspaceFolder}/src/Heimdallr.Host/bin/Debug/net9.0/Heimdallr.Host.dll",
10 | "args": [],
11 | "cwd": "${workspaceFolder}/src/Heimdallr.Host",
12 | "stopAtEntry": false,
13 | "serverReadyAction": {
14 | "action": "openExternally",
15 | "pattern": "\\bNow listening on:\\s+(https?://\\S+)"
16 | },
17 | "env": {
18 | "ASPNETCORE_ENVIRONMENT": "Development"
19 | },
20 | "sourceFileMap": {
21 | "/Views": "${workspaceFolder}/src/Heimdallr.Host/Views"
22 | }
23 | }
24 | ]
25 | }
--------------------------------------------------------------------------------
/src/Heimdallr.Host/ClientApp/src/views/Home.vue:
--------------------------------------------------------------------------------
1 |