Personal File Backup Server
github.com
Personal File Backup Server
1–10 of 28 posts
Re: Personal File Backup Server
#2Re: Personal File Backup Server
#3I know it is a fresh project but a README would be really cool to have.
Re: Personal File Backup Server
#4Here are somethings that I would consider adding:
* a README (update: done! :) )
* consider making this work with virtualenv by default. This way you can install
Flask as a library without making me install it for the system. Adding a short
bash wrapper script really helps here.
* support for folders
* sha1 hashes to ensure your files are consistent
* de-duplication of chunks would be a good thing to add too
* The way you are sending data now looks like you are using GETs for everything.
If you are really going to make this work, you should use GETs for downloading and PUTs or POSTs for uploading.Re: Personal File Backup Server
#5It looks like this doesn't work with folders... or have some kind of hash to detect alteration. While I appreciate you sharing the project, this is probably premature at this point. Here are somethings that I would consider adding: * a README (update: done! :) ) * consider making this work with virtualenv by default. This way you can install Flask as a library without making me install it for the system. Adding a sho…
I know about no support for folders, I didn't have time to fix that yet, but I will!
Virtual enviornment is interesting, I will look into that.
* It does check for alterations actually then uploads the altered file, look at the main loop in the client.
The way I am sending files now is awful! I plan on fixing all thos, thank you for the response. :)
Re: Personal File Backup Server
#6It looks like this doesn't work with folders... or have some kind of hash to detect alteration. While I appreciate you sharing the project, this is probably premature at this point. Here are somethings that I would consider adding: * a README (update: done! :) ) * consider making this work with virtualenv by default. This way you can install Flask as a library without making me install it for the system. Adding a sho…
Yes, this is still very premature, and more of a learning project for me. I know about no support for folders, I didn't have time to fix that yet, but I will! Virtual enviornment is interesting, I will look into that. * It does check for alterations actually then uploads the altered file, look at the main loop in the client. The way I am sending files now is awful! I plan on fixing all thos, thank you for the respons…
But, you it probably shouldn't have been submitted to the wolves in this state :).
Re: Personal File Backup Server
#7Earlier quoted context omitted.
Yes, this is still very premature, and more of a learning project for me. I know about no support for folders, I didn't have time to fix that yet, but I will! Virtual enviornment is interesting, I will look into that. * It does check for alterations actually then uploads the altered file, look at the main loop in the client. The way I am sending files now is awful! I plan on fixing all thos, thank you for the respons…
Good luck to you. I hope that you come up with a worthwhile project that you can learn a ton with. But, you it probably shouldn't have been submitted to the wolves in this state :).
Re: Personal File Backup Server
#8It looks like this doesn't work with folders... or have some kind of hash to detect alteration. While I appreciate you sharing the project, this is probably premature at this point. Here are somethings that I would consider adding: * a README (update: done! :) ) * consider making this work with virtualenv by default. This way you can install Flask as a library without making me install it for the system. Adding a sho…
Yes, this is still very premature, and more of a learning project for me. I know about no support for folders, I didn't have time to fix that yet, but I will! Virtual enviornment is interesting, I will look into that. * It does check for alterations actually then uploads the altered file, look at the main loop in the client. The way I am sending files now is awful! I plan on fixing all thos, thank you for the respons…
Re: Personal File Backup Server
#9Re: Personal File Backup Server
#10Here is an example decorator: https://github.com/kamalgill/flask-appengine-template/blob/m...
In use: https://github.com/kamalgill/flask-appengine-template/blob/m...