0.0
No commit activity in last 3 years
No release in over 3 years
Nonono Daemon
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 10.0

Runtime

 Project Readme

NononoDaemon

Notification Service

Installation

source "https://rubygems.org"

gem "nonono_daemon"
# gem nonono_sender
# gem nonono_reciever

Sample

FROM ruby

ENV SLACK_API_TOKEN=xoxp-XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
ENV SLACK_CHANNEL=#XXXXXXXXXXXXXXXXXXXXX
ENV NONONO_HTTP_PORT=4567
ENV NONONO_HTTP_USER=userid
ENV NONONO_HTTP_PASSWORD=password
EXPOSE 4567

RUN cd && mkdir app && cd app \
  && bundle init \
  && echo '' >> Gemfile \
  && echo 'gem "nonono_daemon"' >> Gemfile \
  && echo 'gem "nonono_sender-http"' >> Gemfile \
  && echo 'gem "nonono_reciever-slack"' >> Gemfile \
  && bundle install
CMD cd && cd app && bundle exec nonono

License

The gem is available as open source under the terms of the MIT License.