This repository has been archived by the owner on Jun 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Clarify README examples based on #19
- Loading branch information
Showing
1 changed file
with
4 additions
and
2 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 |
---|---|---|
|
@@ -61,20 +61,22 @@ Run `./two_factor.sh`, the script will ask you for the e-mail you want to set up | |
|
||
The import script will interactively ask for your master password. This is needed since the data in the CSV must be encrypted and some data like existing folders must be decrypted. | ||
|
||
In the example below, replace `STAGE` and `REGION` if necessary in regards to your setup. | ||
|
||
### Bitwarden | ||
|
||
Go to https://help.bitwarden.com/article/export-your-data/ | ||
|
||
```bash | ||
./import.sh -e [email protected] -f export.csv -p bitwarden | ||
STAGE=prod REGION=us-east-1 ./import.sh -e [email protected] -f export.csv -p bitwarden | ||
``` | ||
|
||
### Lastpass | ||
|
||
Go to https://lastpass.com/support.php?cmd=showfaq&id=1206 | ||
|
||
```bash | ||
./import.sh -e [email protected] -f export.csv -p lastpass | ||
STAGE=prod REGION=us-east-1 ./import.sh -e [email protected] -f export.csv -p lastpass | ||
``` | ||
|
||
## Run on own domain | ||
|