Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ab/onceler
Onceler listens to your secrets and shares them exactly once.
https://github.com/ab/onceler
ruby
Last synced: about 1 month ago
JSON representation
Onceler listens to your secrets and shares them exactly once.
- Host: GitHub
- URL: https://github.com/ab/onceler
- Owner: ab
- License: apache-2.0
- Created: 2012-07-15T08:30:30.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2024-02-29T01:49:35.000Z (10 months ago)
- Last Synced: 2024-04-22T03:21:25.711Z (8 months ago)
- Topics: ruby
- Language: Ruby
- Homepage: https://onceler.onrender.com/
- Size: 765 KB
- Stars: 17
- Watchers: 3
- Forks: 7
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
![Onceler House](http://i.imgur.com/5TAkSCI.jpg)
# Onceler
The Onceler listens to your secrets and shares them exactly once.
You won't see the Once-ler.
Don't knock at his door.
He stays in his Lerkim on top of his store.
He lurks in his Lerkim, cold under the roof,
where he makes his own clothes
out of miff-muffered moof.
And on special dank midnights in August,
he peeks
out of the shutters
and sometimes he speaks
and tells how the Lorax was lifted away.He'll tell you, perhaps....
if you're willing to pay.# Installing and Running
## Dependencies
Since Onceler stores secrets in volatile memory, it has no external
dependencies and no database. All Ruby library dependencies are listed in the
[Gemfile](./Gemfile).Onceler is written in Ruby. It requires Ruby >= 2.7.
[Rbenv](https://github.com/rbenv/rbenv) provides a convenient way to manage
installations of multiple Ruby versions.## Running the app
Install ruby, either via rbenv or a system package manager.
Then install gem dependencies:
```sh
bundle install
```Start the application:
```sh
# Usage: serve [BIND_ADDR] [BIND_PORT]# Listen only on localhost
bin/serve# Listen on all network interfaces
bin/serve 0.0.0.0
```