tschf / atom-build-oracle

Oracle compilation plugin for atom-build
MIT License
12 stars 2 forks source link

Option to prompt for password & store it in session #26

Open 4223 opened 8 years ago

4223 commented 8 years ago

...should be stored in session, but not permanent in a config file. Could be a security problem to store the password in a plaintext JSON file

tschf commented 8 years ago

I don't know if the build system allows you to enter credentials at run time, I've also noted this in the README.

Since this file contains sensitive information (password) you will likely also want to add an entry to your .gitignore file so this is not published.

Open to suggestions on this front. Here's the build package this leaverages - https://github.com/noseglid/atom-build/blob/master/README.md

tschf commented 8 years ago

Couple of ideas I was pointed towards, atom package generator and https://github.com/atom/atom-space-pen-views (for examples of input dialogs).

Storage/caching, localStorage APIs?