resumake.io icon indicating copy to clipboard operation
resumake.io copied to clipboard

Add a privacy policy

Open karlbrown-va opened this issue 3 years ago • 4 comments

Is your feature request related to a problem? Please describe. It would be nice if there was a privacy policy describing the approach to user data collected by the website.

Describe the solution you'd like A privacy policy that states that the website will not store, sell, or use any data entered in it (I didn't check but I'm assuming this is the case...)

karlbrown-va avatar Mar 17 '21 14:03 karlbrown-va

Hey, sorry for getting to this late. I think that's a good point, I will include this in v3

saadq avatar Aug 03 '21 23:08 saadq

until that time, @saadq can you please share your comments here on how user data is kept safe, secure, private? is user data persisted anywhere?

be-rock avatar Sep 16 '21 16:09 be-rock

Sure, so I don't persist any data at all (there is no database for Resumake). I can go into some more technical details below:

When a user clicks the Make button to generate the resume, it sends the user data to my server. My server will then transform that data into a LaTeX document and then run a LaTeX subprocess in a tmp folder. So a PDF file for the resume as well as other miscellaneous tex files will get generated and put inside that temp folder before I send it back to the user. Once the output PDF has finished being sent, I delete the generated folder so the output PDF and any corresponding files will be deleted (https://github.com/saadq/node-latex/blob/master/index.js#L202). For an extra layer of protection, I also have a cron job that runs once per minute to automatically delete any of the LaTeX generated stuff inside the temp folder if it was somehow not deleted.

So you can rest assured I am not doing anything with user data :D. I will leave this issue open until a privacy policy has been added though.

saadq avatar Sep 17 '21 02:09 saadq

Thank you for the thorough response and for your approach to privacy.

be-rock avatar Sep 24 '21 00:09 be-rock