Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 827 Bytes

File metadata and controls

13 lines (10 loc) · 827 Bytes

What is this?

Gilfoyle will store your secrets. We encrypt your data.

What is used?

  • Sinatra as a back-end.
  • Redis as a database. We do not need to keep a huge structure of data. We just want to set and get data as fast as possible. Therefore, Redis.
  • Sidekiq for background processes. It is fast. It has a great community. Even the creator has answered me at stackoverflow.
  • OpenSSL::Cipher from standard library to encrypt data to avoid unnecessary dependencies.
  • Unicorn as a web server. I've used it in production and because of DHH.

How it was started?

Well, I've started from paper. From this paper.