Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/sundi3yansyah/sehatq

Test from SehatQ
https://github.com/sundi3yansyah/sehatq

Last synced: 3 days ago
JSON representation

Test from SehatQ

Awesome Lists containing this project

README

        


Sinatra logo

Test SehatQ by Cahyadi Triyansyah

## Status
![SehatQ App build with Ruby on Rails](https://github.com/SunDi3yansyah/SehatQ/workflows/SehatQ%20App%20build%20with%20Ruby%20on%20Rails/badge.svg?branch=master)
[![Build Status](https://travis-ci.org/SunDi3yansyah/SehatQ.svg)](https://travis-ci.org/SunDi3yansyah/SehatQ)
[![GitHub last commit](https://img.shields.io/github/last-commit/SunDi3yansyah/SehatQ.svg)](https://github.com/SunDi3yansyah/SehatQ/commits/master)
[![GitHub issues](https://img.shields.io/github/issues/SunDi3yansyah/SehatQ.svg)](https://github.com/SunDi3yansyah/SehatQ/issues)

## Postman
[![Run in Postman](https://run.pstmn.io/button.svg)](https://documenter.getpostman.com/view/920672/SzKWucnb)

## Tech Stack

- You can see on [Gemfile](Gemfile)

## Requirements

- Ruby
- SQLite

## Setup

#### Quick Setup / Re-Setup:
```
rails db:drop db:create db:migrate
```

#### Development Environment:
```bash
bundle install --without production
```

#### Test Environment:
```bash
bundle install --without development production
rspec
```

#### Production Environment:
```bash
bundle install --deployment --without development test
```

#### Secret Key Base:
```bash
rails secret
```

#### Clear Caches:
```bash
rails tmp:clear
```

#### Clear Logs:
```bash
rails log:clear
```

#### Run Web Server (puma)
```
rails s
```

#### Generate SDoc:
```bash
gem install sdoc
sdoc -o doc/ -T rails -t sehatq
```