diff --git a/README.md b/README.md index 06f1184..85498de 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,31 @@ # DbPicSync -DbPicSync git module for use in DbSoftware (https://github.com/0xFEEDC0DE64/DbSoftware) +Lets you convert any files/folders to pictures to store on free unlimited amazon photo storage. + +Amazon offers prime customers 5GB free cloud storage in [amazon drive](https://www.amazon.com/clouddrive) and unlimited storage for photos. + +This tool lets you convert any file/folder structure from your existing NAS or external HDD into such photos! + +One of those generated photos can look like this: +![Example generated from raspberry os](https://raw.githubusercontent.com/0xFEEDC0DE64/DbPicSync/master/example.png) + +The generated folders looks like this: +![The folder for raspberry os](https://raw.githubusercontent.com/0xFEEDC0DE64/DbPicSync/master/folder.png) + +After uploading tons of random data your storage usage might look like this: +![Hundrets of gigabytes use no storage on amazon](https://raw.githubusercontent.com/0xFEEDC0DE64/DbPicSync/master/amazon.png) + +# Building from source +This project can only be built as part of the project structure [DbSoftware](https://github.com/0xFEEDC0DE64/DbSoftware) + +```Shell +git clone https://github.com/0xFEEDC0DE64/DbSoftware.git +cd DbSoftware +git submodule update --init --recursive DbPicSync +cd .. +mkdir build_DbSoftware +cd build_DbSoftware +qmake CONFIG+=ccache ../DbSoftware +make -j$(nproc) sub-DbPicSync +make sub-DbPicSync-install_subtargets +./bin/picsync +``` diff --git a/amazon.png b/amazon.png new file mode 100644 index 0000000..8d05cf3 Binary files /dev/null and b/amazon.png differ diff --git a/example.png b/example.png new file mode 100644 index 0000000..8433d05 Binary files /dev/null and b/example.png differ diff --git a/folder.png b/folder.png new file mode 100644 index 0000000..e301727 Binary files /dev/null and b/folder.png differ