Creating a repository --------------------- You need a central place where ``brig`` stores its metadata. This place is called a »repository« or short »repo«. This is not the place, where your files are stored. Those are copied (if you did setup IPFS in a normal way) to ``~/.ipfs``. Keep in mind that ``brig`` will copy files and thus will never modify the original files on your hard drive. By creating a new repository you also generate your identity, under which your buddies can later **find** and **authenticate** you. But enough of the mere theory, let's get started: .. code-block:: bash # Create a place where we store our metadata. # The repository is created by default at ~/.brig # (This can be changed via `brig --repo`) $ brig init ali@woods.org/desktop -w 'echo my-password' _____ / /\ ___ / /\ / /::\ / /::\ / /\ / /:/_ / /:/\:\ / /:/\:\ / /:/ / /:/ /\ / /:/~/::\ / /:/~/:/ /__/::\ / /:/_/::\ /__/:/ /:/\:| /__/:/ /:/___ \__\/\:\__ /__/:/__\/\:\ \ \:\/:/~/:/ \ \:\/:::::/ \ \:\/\ \ \:\ /~~/:/ \ \::/ /:/ \ \::/~~~~ \__\::/ \ \:\ /:/ \ \:\/:/ \ \:\ /__/:/ \ \:\/:/ \ \::/ \ \:\ \__\/ \ \::/ \__\/ \__\/ \__\/ A new file README.md was automatically added. Use 'brig cat README.md' to view it & get started. $ ls ~/.brig config.yml data gpg.prv gpg.pub logs metadata meta.yml passwd.locked remotes.yml The name you specified after the ``init`` is the name that will be shown to other users and by which you are searchable in the network. See :ref:`about_names` for more details on the subject. Once the ``init`` ran successfully there will be a daemon process running in the background. Every other ``brig`` commands will communicate with it via a local network socket. If the daemon does not run yet, it will be started for you in the background without you noticing. .. note:: If no IPFS daemon is running, ``brig`` will start one for you. If you don't have ``ipfs`` installed, it will even install and set it up for you. By default, ``brig init`` will also set some default options that help ``brig`` to run a bit smoother. If you do not want those, please add ``--no-ipfs-optimization`` to the ``init`` command above. Passwords ~~~~~~~~~ ``brig`` needs a password to securely encrypt your repository. In the example above we specified a password helper (``-w 'echo my-password'``). That's simply a program that will output the correct password to ``stdout``. Obviously, using ``echo`` for this job is not perfect (although it works fine in test environments). Instead we recommend to use a password manager like `pass `_ and to initialize your repo like that: .. code-block:: bash # Generate a password and store it in "pass": $ pass generate brig/ali -n 20 $ brig init ali@woods.org/desktop -w "pass brig/ali" The advantage here is that your password is protected with a master password that will be handled by ``pass``. If you already set it up like above you can simply change the password helper command: .. code-block:: bash $ brig cfg set repo.password_command "pass brig/ali" There are two alternatives to using a password manager (which we do **not** recommend): 1. Do not use the ``-w / --password-helper`` flag. You will be asked to enter a new password. The more secure the password is you entered, the greener the prompt gets [#]_. The clear disadvantage here is that you need to re-enter the password every time you restart the daemon. 2. Do not use a password. You can do this by passing ``-x`` to the ``init`` command. This is obviously not recommended. .. note:: Using a good password is especially important if you're planning to move the repo, i.e. carrying it around you on a usb stick. When the daemon shuts down it locks and encrypts all files in the repository (including all metadata and keys), so nobodoy is able to access them anymore. .. [#] The *"security"* is measured by `Dropbox's password strength library »zxcvbn« `_. Don't rely on the outputs it gives. .. _about_names: Choosing and finding names ~~~~~~~~~~~~~~~~~~~~~~~~~~ You might wonder what the name you pass to ``init`` is actually for. As previously noted, there is no real restriction for choosing a name, so all of the following are indeed valid names: - ``ali`` - ``ali@woods.org`` - ``ali@woods.org/desktop`` - ``ali/desktop`` It's however recommended to choose a name that is formatted like a XMPP/Jabber-ID. Those IDs can look like plain emails, but can optionally have a »resource« part as suffix (separated by a »/« like ``desktop``). Choosing such a name has two advantages: - Other peers can find you by only specifying parts of your name. Imagine all of the *Smith* family members use ``brig``, then they'd possibly those names: * ``dad@smith.org/desktop`` * ``mom@smith.org/tablet`` * ``son@smith.org/laptop`` When ``dad`` now sets up ``brig`` on his server, he can use ``brig net locate -m domain 'smith.org'`` to get all fingerprints of all family members. Note however that ``brig net locate`` **is not secure**. Its purpose is solely discovery, but is not able to verify that the fingerprints really correspond to the persons they claim to be. This due to the distributed nature of ``brig`` where there is no central or federated authority that coordinate user name registrations. So it is perfectly possible that one name can be taken by several repositories - only the fingerprint is unique. - Later development of ``brig`` might interpret the user name and domain as email and might use your email account for verification purposes. Having a resource part is optional, but can help if you have several instances of ``brig`` on your machines. i.e. one user name could be ``dad@smith.org/desktop`` and the other ``dad@smith.org/server``. Running the daemon and viewing logs ----------------------------------- The following sections are not a required read. They are useful to keep in mind, but in the ideal case you're don't even need to think about the daemon. As discussed before, the daemon is being started on demand in the background. Subsequent commands will then use the daemon. For debugging purposes it can be useful to run in the daemon in the foreground. You can do this with the ``brig daemon`` commands: .. code-block:: bash # Make sure no prior daemon is running: $ brig daemon quit # Start the daemon in the foreground and log to stdout: $ brig daemon launch -s If you want to quit the instance, either just hit CTRL-C or type ``brig daemon quit`` into another terminal window. Logging ~~~~~~~ Unless you pass the ``-s`` (``--log-to-stdout`` flag) as above, all logs are being piped to the system log. You can follow the log like this: .. code-block:: bash # Follow the actual daemon log: $ journalctl -ft brig This assumes you're using a ``systemd``-based distribution. If not, refer to the documentation of your syslog daemon. Using several repositories in parallel ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ It can be useful to run more than one instance of the ``brig`` daemon in parallel. Either for testing purposes or as actual production configuration. In order for the ``brig`` client to know what daemon to talk to, you have to be specific about the repository (``--repo``) path. Here is an example: .. code-block:: bash # Be explicit $ brig --repo /tmp/ali init ali -x --ipfs-path ~/.ipfs $ brig --repo /tmp/bob init bob -x --ipfs-path ~/.ipfs2 # Since you specified --repo we know what daemon to talk to. # You can also set BRIG_PATH for the same effect: $ BRIG_PATH=/tmp/ali brig ls # Add some alias to your .bashrc to save you some typing: $ alias brig-ali="brig --repo /tmp/ali" $ alias brig-bob="brig --repo /tmp/bob" # Now you can use them normally, # e.g. by adding them as remotes each: $ brig-ali remote add bob $(brig-bob whoami -f) $ brig-bob remote add ali $(brig-ali whoami -f) .. note:: It is possible to have several repositories per IPFS instances. Since things might get confusing though when it comes to pinning, it is recommended to have several IPFS daemons running in this case. This is done via the ``--ipfs-port`` flag in the example above.