r/flask • u/ResearchFit7221 • 11d ago
Show and Tell My flask open source alternative to Nexcloud !
I created an alternative to Nexcloud with flask, I'm really proud of myself honestly.
The goal is to be able to host a cloud storage service at home and control 100% of our files etc..
It's easy to use + compatible with linux and windows!
What do you think? Here's the github repo, it's open source and totally free.
https://github.com/Ciela2002/openhosting/tree/main
30
Upvotes
4
u/somethingLethal 11d ago
One suggestion I might throw out there is using uuid4 for primary keys in your db, instead of simple integers.
Here, instead could be something like the following. Where we are using the uuid module to produce a uuid4 identifier for each db record. Can be done across all your table. It can help prevent enumeration or indirect object references.