Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sundi3yansyah/sehatq
Test from SehatQ
https://github.com/sundi3yansyah/sehatq
Last synced: 3 days ago
JSON representation
Test from SehatQ
- Host: GitHub
- URL: https://github.com/sundi3yansyah/sehatq
- Owner: SunDi3yansyah
- Created: 2020-02-24T12:19:40.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-01-19T17:36:04.000Z (almost 2 years ago)
- Last Synced: 2024-03-27T23:41:48.668Z (8 months ago)
- Language: Ruby
- Homepage:
- Size: 98.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
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
```