PageRenderTime 46ms CodeModel.GetById 12ms RepoModel.GetById 1ms app.codeStats 0ms

/README.md

https://gitlab.com/mlnkv/keeweb
Markdown | 65 lines | 44 code | 21 blank | 0 comment | 0 complexity | 4f24ff843125f0ab8621119e9eabd0b4 MD5 | raw file
  1. # Free cross-platform password manager compatible with KeePass
  2. This webapp is a browser and desktop password manager compatible with KeePass databases. It doesn't require any server or additional resources.
  3. The app can run either in browser, or as a desktop app.
  4. ![screenshot](https://habrastorage.org/files/ec9/108/3de/ec91083de3e64574a504bc438d038dec.png)
  5. [![Tested on BrowserStack](https://img.shields.io/badge/browserstack-tested-brightgreen.svg?logo=data%3Aimage%2Fpng%3Bbase64%2CiVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAACsUlEQVQokVWSTWwUZQCGn2%2B%2Bnd2d7XS7K1v6Q6WAaBoKklAMP0rcNBqWiMET0SskxEBAURLjBfZkPJAQWmOswkVjYnqiKiGALQ0NP0EIcjAg0gottNB26f7Odmfmm89TG31P7%2BF5bo%2FgP%2BvX%2FfKto31bmY3vV2O590VJIlKps5FS0Fv35roRkc06C6xYOLkvt3cyWTmh7wdve402411Jys0GNkWSUxXij%2Bw79S1N2brPTp9ZFJ9lM6%2FKfP5c%2BK7ZOvpGmsHMu9wImnjmgUWeDeavpNUQa25ZKpVq%2FST6wbc9QvccjExP3LhkPdJbxpdnOL%2FnEAMPKzy48gve%2BH2q7Wuo37Sdd2Kn2BW7wusPG%2F1k%2B4sZIzd9d1tYqS3lis2Tne8xWoHJn05g9h1jxa2LfLfKRI4McNPdyG03zMyyaqhWLB41dCT2EZ7Ci8bxUimCuVn0zUuIcBSzPs7fo2OI4Z%2BpuYrn8yEeWwGE1CaD%2BWLaB5Rw8P0SrzTGCSdSaOUz%2BWSSvq96cRNLWW1X0TrAV2CGRMQILWseMySYco78P0O8tDTB7sOf09KxFqvOZslrabr37aVD%2Fo4hBY1ljVCCkGyI9UgrciqWcGm6eoY%2F2iKs27iDzm9%2BoJzP4cZqTJcHmCg9oEv6rJyL4b0gnFD91uVn8zNTszhPU13FAoULP3K9awRpNwOK0swEQVBhveuTGXdJdLRRM4zLAsD5bd%2Bn8t7E8cJfTzF8eNwQ5l6zScmSWAhWFmq8XDVIrm9HJ%2BuqfhDtFgBa98va8OBJOZU74IxO4z93EF4AhsCImpitDcQ6W1ARs%2Br55odW99ffLyaH1sK99vEeUXOOaGe%2BQypFIDQh28IThhJCXvZ1%2BJiV7h35X6uL%2Fp9Z2y8WNiOj25BWp67NDaOMa18MHr%2BdzYpggfsXmkch023E8JUAAAAASUVORK5CYII%3D)](https://www.browserstack.com/)
  6. # Quick Links
  7. Apps: [Web](https://app.keeweb.info/) [Desktop](https://github.com/keeweb/keeweb/releases/latest)
  8. Timeline: [Release Notes](release-notes.md) [TODO](https://github.com/keeweb/keeweb/wiki/TODO)
  9. On one page: [Features](https://keeweb.info/#features) [FAQ](https://github.com/keeweb/keeweb/wiki/FAQ)
  10. Website: [keeweb.info](https://keeweb.info)
  11. Twitter: [kee_web](https://twitter.com/kee_web)
  12. # Status
  13. Project roadmap with planned features and approximate schedule is on [TODO](https://github.com/keeweb/keeweb/wiki/TODO) page.
  14. # Self-hosting
  15. Everything you need to host this app on your server is any static file server. The app is a single HTML file + cache manifest (optionally; for offline access).
  16. You can download the latest distribution files from [gh-pages](https://github.com/keeweb/keeweb/tree/gh-pages) branch.
  17. If you are using Docker:
  18. 1. put your dh.pem, cert.pem, key.pem to /etc/nginx/external/
  19. 2. run this script:
  20. ```bash
  21. docker run --name keeweb -d -p 443:443 -p 80:80 -v $EXT_DIR:/etc/nginx/external/ antelle/keeweb
  22. ```
  23. To make Dropbox work in your self-hosted app:
  24. 1. [create](https://www.dropbox.com/developers/apps/create) a Dropbox app
  25. 2. find your app key (in Dropbox App page, go to Settings/App key)
  26. 3. change Dropbox app key in index.html file: `sed -i.bak s/qp7ctun6qt5n9d6/your_app_key/g index.html`
  27. (or, if you are building from source, change it [here](app/scripts/comp/dropbox-link.js#L12))
  28. # Building
  29. The app can be built with grunt: `grunt` (html file will be in `dist/`).
  30. Desktop apps are built with `grunt desktop`. This works only in mac osx as it builds dmg; requires wine.
  31. To run Electron app without building installer, install electron package (`npm install electron-prebuilt -g`), build the app with `grunt` and start in this way:
  32. ```bash
  33. $ grunt
  34. $ electron electron --htmlpath=tmp
  35. ```
  36. For debug build:
  37. 1. run `grunt`
  38. 2. run `grunt watch`
  39. 3. open `tmp/index.html`
  40. # Contributing
  41. Please, read contribution guidelines: [for issues](.github/ISSUE_TEMPLATE.md) and [for pull requests](.github/PULL_REQUEST_TEMPLATE.md).
  42. For pull requests: branch is important! `master` is only for hotfixes, `develop` is for new features.
  43. # License
  44. [MIT](https://github.com/keeweb/keeweb/blob/master/LICENSE.txt)