Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sundi3yansyah/atask
https://github.com/sundi3yansyah/atask
Last synced: 3 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/sundi3yansyah/atask
- Owner: SunDi3yansyah
- Created: 2023-11-06T12:49:56.000Z (about 1 year ago)
- Default Branch: development
- Last Pushed: 2023-11-08T15:11:33.000Z (about 1 year ago)
- Last Synced: 2024-03-27T23:41:48.620Z (8 months ago)
- Language: Ruby
- Size: 85.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ATask
### Status
![development](https://github.com/SunDi3yansyah/atask/actions/workflows/workflow.yml/badge.svg?branch=development)### Postman
[![Run in Postman](https://run.pstmn.io/button.svg)](https://documenter.getpostman.com/view/920672/2s9YXfc4GF)### Tech Stack
- You can see on [Gemfile](Gemfile)
### Requirements
- Ruby
- PostgreSQL### 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
```#### Production Environment:
```bash
bundle install --deployment --without development test
```#### Run Test with RSpec
```
rspec
```#### Run Web Server with Puma
```
rails s
```