diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2020-09-22 11:50:03 +0200 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2020-09-22 11:50:03 +0200 |
commit | 9460862c180597375b9e76781c3190a291cccdea (patch) | |
tree | 85238cbbf55f0df3e0b81bbe13834be4978f7c6f | |
parent | 6467a5ab3146605d378ee2bd134588f15bbea2f4 (diff) | |
download | infrastructure-9460862c180597375b9e76781c3190a291cccdea.tar.gz infrastructure-9460862c180597375b9e76781c3190a291cccdea.zip |
Add guide
-rw-r--r-- | op_guide/plume/README.md | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/op_guide/plume/README.md b/op_guide/plume/README.md new file mode 100644 index 0000000..fa6084d --- /dev/null +++ b/op_guide/plume/README.md @@ -0,0 +1,18 @@ + 1. Bind nomad on your machine with SSH (check the README file at the root of this repo) + 2. Go to http://127.0.0.1:4646 + 3. Select `plume` -> click `exec` button (top right) + 4. Select `plume` on the left panel + 5. Press `enter` to get a bash shell + 6. Run: + +```bash +plm users new \ + --username alice \ + --display-name Alice \ + --bio Just an internet user \ + --email alice@example.com \ + --password s3cr3t +``` + +That's all folks, now you can use your new account at https://plume.deuxfleurs.fr + |