Aquila is a simple rails app that allows you to share passwords, notes with your team like Roswell or like another awesome project Swordfish, Last Pass, and so on...
You can play with demo demo@example.com / secret
or simply use it on vaultypass.com
- Simple web accounts
Not extremely secure, but more secure than a shared google spreadsheet. The production
environment requires SSL, this is to ensure that cleartext passwords aren't sent/received over the wire.
Really, we just needed something better than a spreadsheet.
Aquila is just a rails app so clone it down somewhere and:
> bundle # install gem dependencies
Then just start your choice of server (you'll wanna put it behind SSL).
> gem install heroku
> heroku create example-aquila --stack cedar
> heroku addons:add mongolab:starter
> git push heroku master
- Ruby 2.1
- MongoDB
RAILS_ENV=test bundle exec rspec spec
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request