All Projects → adamcooke → Staytus

adamcooke / Staytus

Licence: mit
💡 An open source solution for publishing the status of your services

Programming Languages

ruby
36898 projects - #4 most used programming language
Haml
164 projects
SCSS
7915 projects
HTML
75241 projects
coffeescript
4710 projects
shell
77523 projects

Projects that are alternatives of or similar to Staytus

Snpr
The sources of the openSNP website
Stars: ✭ 155 (-92.37%)
Mutual labels:  rails
Graphql Rails Blog
Blog App built with Rails 5, React and GraphQL
Stars: ✭ 160 (-92.13%)
Mutual labels:  rails
Rails Base
Skeleton for new Rails based projects.
Stars: ✭ 161 (-92.08%)
Mutual labels:  rails
Responders
A set of Rails responders to dry up your application
Stars: ✭ 1,925 (-5.27%)
Mutual labels:  rails
X Editable Rails
Edit fields easily with X-Editable helper
Stars: ✭ 159 (-92.18%)
Mutual labels:  rails
Yaaf
Easing the form object pattern in Rails applications
Stars: ✭ 161 (-92.08%)
Mutual labels:  rails
Timber Ruby
🌲 Great Ruby logging made easy.
Stars: ✭ 154 (-92.42%)
Mutual labels:  rails
Her
Her is an ORM (Object Relational Mapper) that maps REST resources to Ruby objects. It is designed to build applications that are powered by a RESTful API instead of a database.
Stars: ✭ 1,974 (-2.85%)
Mutual labels:  rails
Api guard
JWT authentication solution for Rails APIs
Stars: ✭ 159 (-92.18%)
Mutual labels:  rails
Authie
👮‍♂️ Improve user session security in Ruby on Rails applications with database session storage
Stars: ✭ 161 (-92.08%)
Mutual labels:  rails
Hound
Automated code review for GitHub pull requests.
Stars: ✭ 1,904 (-6.3%)
Mutual labels:  rails
Draftsman
Ruby gem that lets you create draft versions of your database records.
Stars: ✭ 159 (-92.18%)
Mutual labels:  rails
Rubanok
Parameters-based transformation DSL
Stars: ✭ 161 (-92.08%)
Mutual labels:  rails
Yii2 Workflow
A simple workflow engine for Yii2
Stars: ✭ 157 (-92.27%)
Mutual labels:  status
Sentimentalizer
Sentiment analysis with Machine Learning
Stars: ✭ 162 (-92.03%)
Mutual labels:  rails
Weg Li
📸 📝 ✊ weg-li: 1, 2, 3 - Macht die Bahn frei!
Stars: ✭ 156 (-92.32%)
Mutual labels:  rails
Expertiza
Expertiza is a web application through which students can submit and peer-review learning objects (articles, code, web sites, etc). The Expertiza project is supported by the National Science Foundation.
Stars: ✭ 160 (-92.13%)
Mutual labels:  rails
Stackneveroverflow
A simple Q&A platform using Ruby on Rails, support markdown.
Stars: ✭ 164 (-91.93%)
Mutual labels:  rails
Wheel
Don't reinvent the wheel for every new Rails project. Use sane Defaults.
Stars: ✭ 163 (-91.98%)
Mutual labels:  rails
Ruby Bookmarks
Ruby and Ruby on Rails bookmarks collection
Stars: ✭ 1,972 (-2.95%)
Mutual labels:  rails

Where did the GitHub Issues go? Due to a bit of neglect on my part and an abundance of support questions coming to this repository as GitHub issues I have taken the decision to close all issues. I don't have time to go through each issue individually. If your issue has been closed and it's not a support request and you still think it is relevant, please comment and I'll review.

Future plans I'm hoping to do a bit more work on Staytus soon. One of the main things I want to achieve will be to provide Staytus as a container rather than requiring people to install it manually on servers which seems to be cause of a number of issues. Once this is complete, I'll update all docs to make it clear now to deploy Staytus either using Docker or onto a Kubernetes cluster if that's what you prefer.

Staytus

Staytus is a complete solution for publishing the latest information about any issues with your web applications, networks or services. Along with absolutely beautiful public & admin interfaces, Staytus is a powerful tool for any organization with customers that rely on them to be online 24/7.

Screenshot

Installation from source

System Requirements

  • Ruby 2.3 or greater (including ruby-dev package on Linux)
  • RubyGems and Bundler
  • A MySQL database server
  • Bundler (gem install bundler)
  • Rake (gem install rake)
  • Procodile (gem install procodile)

Installation Instructions

A comprehensive tutorial about how to install Staytus available here on the aTech Media blog.

Alternativly, these basic instructions will get you up and running:

Before start, you'll need to create a new MySQL database:

mysql$ CREATE DATABASE `staytus` CHARSET utf8 COLLATE utf8_unicode_ci;
mysql$ GRANT ALL ON staytus.* TO `staytus`@`localhost` IDENTIFIED BY "a_secure_password";
$ git clone https://github.com/adamcooke/staytus
$ cd staytus
$ git checkout stable
$ bundle install --deployment --without development:test
$ cp config/database.example.yml config/database.yml
$ nano -w config/database.yml # Add your database configuration
$ bundle exec rake staytus:build staytus:install
$ procodile start --foreground

In case the bundle install command fails at mysql2, make sure that you have the MySQL development package (ie. mysql on macOS, libmariadb-dev for MariaDB on Linux)

This will run the application on HTTP port 5000. When you first login, you'll be able to add your own site settings. Browse to http://[IP]:8787 to begin.

You may also want to change the SMTP configuration via environment variables, which are described in config/environment.example.yml.

To run staytus in the background, simply run procodile start without the --foreground option.

Upgrading

Once you've installed Staytus, you can easily upgrade it by following this process.

$ cd path/to/staytus
$ git pull origin stable
$ bundle
$ bundle exec rake staytus:build staytus:upgrade

Once you've done this, you should ensure you restart any Staytus processes which you have running.

E-Mail Notifications

All e-mail notifications are sent through a background worker process. This will be started automatically when you run the application using foreman start. If you don't do this, you can run jobs using bundle exec rake jobs:work.

Administration

To log in for the first time, visit the /admin, and log in with email [email protected] and password password. You will probably want to go to Settings -> Users and set up your admins.

Themes

All themes are stored in the content/themes directory. You can add your own themes in this directory but we do not recommend making changes to the default theme as these changes may get overridden in an upgrade.

Full details about how to make these will be coming soon.

Examples in the wild

If you're running Staytus in the wild, let us know so we can add you to the list.

Screenshots

Here's a few extra screenshots from the admin and public interfaces.

Screenshot

Screenshot

Screenshot

Screenshot

Screenshot

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].