The Tahoe-LAFS decentralized secure filesystem.
Go to file
fenn-cs dff213c748 Only show instruction if neccesary
Signed-off-by: fenn-cs <fenn25.fn@gmail.com>
2022-05-19 16:43:42 +01:00
.circleci Get rid of deprecations builder. 2022-04-29 10:03:43 -04:00
.github These are not numbers. 2022-02-23 11:11:04 -05:00
docs Include existing params in command & exit during exception 2022-05-18 18:02:35 +01:00
integration Fix keyword argument name. 2022-05-13 13:42:10 -04:00
misc Try to update to Python 3. 2022-02-14 11:30:19 -05:00
newsfragments Merge branch 'master' into 3846.add-add-release-script 2022-05-17 22:41:59 +01:00
nix bump the pypi db to a version including upcoming pycddl dependency 2022-04-13 08:25:11 -04:00
release-tools refactor more 2018-05-29 13:17:32 -06:00
src/allmydata Make queries run in parallel. 2022-04-28 12:18:58 -04:00
static Remove Nevow from the static script 2020-10-21 10:16:44 -04:00
.coveragerc This is probably a better way to handle multiple Python versions 2020-10-14 13:10:23 -04:00
.gitignore Hide all _trial_temp. 2021-11-17 11:09:45 -05:00
.pre-commit-config.yaml Only run codechecks on changed Python source files 2020-11-19 11:12:08 -05:00
.readthedocs.yaml Tell RTD how to install Sphinx. 2021-10-28 11:12:17 -04:00
CONTRIBUTORS.rst Add suggestion for Tahoe Committers 2021-05-07 16:10:24 +02:00
COPYING.GPL Fix repeated 'the' in license text. 2011-08-19 13:48:36 -07:00
COPYING.TGPPL.rst magic first line tells emacs to use utf8+bom 2013-11-08 21:08:05 +00:00
CREDITS add Florian 2021-12-05 00:53:50 -07:00
Dockerfile Remove $HOME/.cache/ directory after building. 2016-09-26 15:19:04 -07:00
Dockerfile.dev add dockerfile for hacking with docker compose file for local environment 2017-09-19 09:25:39 -07:00
MANIFEST.in setup.py/MANIFEST.in: include missing files 2017-01-18 16:28:23 -08:00
Makefile Just codechecks. 2022-02-15 14:33:00 -05:00
NEWS.rst fix NEWS title 2022-01-07 13:21:44 -07:00
README.rst Python 2 is now unsupported. 2022-02-15 10:20:52 -05:00
Tahoe.home rename bin/allmydata-tahoe to bin/tahoe. Closes #155. 2007-10-11 03:38:24 -07:00
default.nix bump nixpkgs-21.11 and drop the special zfec handling 2022-04-13 08:24:53 -04:00
docker-compose.yml add dockerfile for hacking with docker compose file for local environment 2017-09-19 09:25:39 -07:00
mypy.ini Incorporate mypy-zope to support zope interfaces. 2020-11-29 13:57:46 -05:00
pyinstaller.spec Run on Python 3. 2022-02-15 10:12:31 -05:00
release.py Only show instruction if neccesary 2022-05-19 16:43:42 +01:00
relnotes.txt update relnotes 2022-01-07 13:27:53 -07:00
setup.cfg Revert "a stab at using setup.cfg and setuptools_scm" 2021-10-14 11:01:37 -04:00
setup.py Autobahn regression workaround. 2022-05-13 14:05:53 -04:00
tests.nix Set the Hypothesis profile in more robust way. 2022-03-18 11:51:39 -04:00
towncrier.toml fix the whitespace :/ 2021-10-18 08:11:49 -04:00
tox.ini More verbose output is helpful when debugging. 2022-05-13 12:58:55 -04:00
ws_client.py move to different url 2019-03-21 15:00:02 -04:00

README.rst

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

======================================
Free and Open Decentralized Data Store
======================================

|image0|

`Tahoe-LAFS <https://www.tahoe-lafs.org>`__ (Tahoe Least-Authority File Store) is the first free software / open-source storage technology that distributes your data across multiple servers. Even if some servers fail or are taken over by an attacker, the entire file store continues to function correctly, preserving your privacy and security.

|Contributor Covenant|  |readthedocs|  |circleci|  |githubactions|  |coveralls|


Table of contents

-  `About Tahoe-LAFS <#about-tahoe-lafs>`__

-  `Installation <#installation>`__

-  `Issues <#issues>`__

-  `Documentation <#documentation>`__

-  `Community <#community>`__

-  `Contributing <#contributing>`__

-  `FAQ <#faq>`__

-  `License <#license>`__

💡 About Tahoe-LAFS
-------------------

Tahoe-LAFS helps you to store files while granting confidentiality, integrity, and availability of your data.

How does it work? You run a client program on your computer, which talks to one or more storage servers on other computers. When you tell your client to store a file, it will encrypt that file, encode it into multiple pieces, then spread those pieces out among various servers. The pieces are all encrypted and protected against modifications. Later, when you ask your client to retrieve the file, it will find the necessary pieces, make sure they havent been corrupted, reassemble them, and decrypt the result.

| |image2|
| *The image is taken from meejah's* \  `blog <https://blog.torproject.org/tor-heart-tahoe-lafs>`__ \  *post at Torproject.org.*

|

The client creates pieces (“shares”) that have a configurable amount of redundancy, so even if some servers fail, you can still get your data back. Corrupt shares are detected and ignored so that the system can tolerate server-side hard-drive errors. All files are encrypted (with a unique key) before uploading, so even a malicious server operator cannot read your data. The only thing you ask of the servers is that they can (usually) provide the shares when you ask for them: you arent relying upon them for confidentiality, integrity, or absolute availability.

Tahoe-LAFS was first designed in 2007, following the "principle of least authority", a security best practice requiring system components to only have the privilege necessary to complete their intended function and not more.

Please read more about Tahoe-LAFS architecture `here <docs/architecture.rst>`__.

✅ Installation
---------------

For more detailed instructions, read `Installing Tahoe-LAFS <docs/Installation/install-tahoe.rst>`__.


Once ``tahoe --version`` works, see `How to Run Tahoe-LAFS <docs/running.rst>`__ to learn how to set up your first Tahoe-LAFS node.

🐍 Python 2
-----------

Python 3.7 or later is now required.
If you are still using Python 2.7, use Tahoe-LAFS version 1.17.1.


🤖 Issues
---------

Tahoe-LAFS uses the Trac instance to track `issues <https://www.tahoe-lafs.org/trac/tahoe-lafs/wiki/ViewTickets>`__. Please email jean-paul plus tahoe-lafs at leastauthority dot com for an account.

📑 Documentation
----------------

You can find the full Tahoe-LAFS documentation at our `documentation site <http://tahoe-lafs.readthedocs.io/en/latest/>`__.

💬 Community
------------

Get involved with the Tahoe-LAFS community:

-  Chat with Tahoe-LAFS developers at ``#tahoe-lafs`` channel on `libera.chat <https://libera.chat/>`__ IRC network or `Slack <https://join.slack.com/t/tahoe-lafs/shared_invite/zt-jqfj12r5-ZZ5z3RvHnubKVADpP~JINQ>`__.

-  Join our `weekly conference calls <https://www.tahoe-lafs.org/trac/tahoe-lafs/wiki/WeeklyMeeting>`__ with core developers and interested community members.

-  Subscribe to `the tahoe-dev mailing list <https://lists.tahoe-lafs.org/mailman/listinfo/tahoe-dev>`__, the community forum for discussion of Tahoe-LAFS design, implementation, and usage.

🤗 Contributing
---------------

As a community-driven open source project, Tahoe-LAFS welcomes contributions of any form:

-  `Code patches <https://tahoe-lafs.org/trac/tahoe-lafs/wiki/Patches>`__

-  `Documentation improvements <https://tahoe-lafs.org/trac/tahoe-lafs/wiki/Doc>`__

-  `Bug reports <https://tahoe-lafs.org/trac/tahoe-lafs/wiki/HowToReportABug>`__

-  `Patch reviews <https://tahoe-lafs.org/trac/tahoe-lafs/wiki/PatchReviewProcess>`__

Before authoring or reviewing a patch, please familiarize yourself with the `Coding Standard <https://tahoe-lafs.org/trac/tahoe-lafs/wiki/CodingStandards>`__ and the `Contributor Code of Conduct <docs/CODE_OF_CONDUCT.md>`__. 


🥳 First Contribution?
----------------------

If you are committing to Tahoe for the very first time, it's required that you add your name to our contributor list in `CREDITS <CREDITS>`__. Please ensure that this addition has it's own commit within your first contribution.


🤝 Supporters
--------------

We would like to thank `Fosshost <https://fosshost.org>`__ for supporting us with hosting services. If your open source project needs help, you can apply for their support.

We are grateful to `Oregon State University Open Source Lab <https://osuosl.org/>`__ for hosting tahoe-dev mailing list.

❓ FAQ
------

Need more information? Please check our `FAQ page <https://www.tahoe-lafs.org/trac/tahoe-lafs/wiki/FAQ>`__.

📄 License
----------

Copyright 2006-2020 The Tahoe-LAFS Software Foundation

You may use this package under the GNU General Public License, version 2 or, at your option, any later version. You may use this package under the Transitive Grace Period Public Licence, version 1.0, or at your choice, any later version. (You may choose to use this package under the terms of either license, at your option.) See the file `COPYING.GPL <COPYING.GPL>`__ for the terms of the GNU General Public License, version 2. See the file `COPYING.TGPPL <COPYING.TGPPL.rst>`__ for the terms of the Transitive Grace Period Public Licence, version 1.0.

See `TGPPL.PDF <https://tahoe-lafs.org/~zooko/tgppl.pdf>`__ for why the TGPPL exists, graphically illustrated on three slides.

.. |image0| image:: docs/_static/media/image2.png
   :width: 3in
   :height: 0.91667in
.. |image2| image:: docs/_static/media/image1.png
   :width: 6.9252in
   :height: 2.73611in
.. |readthedocs| image:: http://readthedocs.org/projects/tahoe-lafs/badge/?version=latest
    :alt: documentation status
    :target: http://tahoe-lafs.readthedocs.io/en/latest/?badge=latest

.. |circleci| image:: https://circleci.com/gh/tahoe-lafs/tahoe-lafs.svg?style=svg
    :target: https://circleci.com/gh/tahoe-lafs/tahoe-lafs

.. |githubactions| image:: https://github.com/tahoe-lafs/tahoe-lafs/actions/workflows/ci.yml/badge.svg
    :target: https://github.com/tahoe-lafs/tahoe-lafs/actions

.. |coveralls| image:: https://coveralls.io/repos/github/tahoe-lafs/tahoe-lafs/badge.svg
    :alt: code coverage
    :target: https://coveralls.io/github/tahoe-lafs/tahoe-lafs

.. |Contributor Covenant| image:: https://img.shields.io/badge/Contributor%20Covenant-v2.0%20adopted-ff69b4.svg
    :alt: code of conduct
    :target: docs/CODE_OF_CONDUCT.md