Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thirunjuguna/easy_rental
Rental Management
https://github.com/thirunjuguna/easy_rental
housing rental-management
Last synced: about 1 month ago
JSON representation
Rental Management
- Host: GitHub
- URL: https://github.com/thirunjuguna/easy_rental
- Owner: thirunjuguna
- Created: 2018-10-19T14:14:50.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2021-08-03T02:24:23.000Z (over 3 years ago)
- Last Synced: 2023-03-02T16:02:37.081Z (almost 2 years ago)
- Topics: housing, rental-management
- Language: CSS
- Homepage: https://easy-rental-staging-app.herokuapp.com/
- Size: 2.28 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Easy Rental
[![Coverage Status](https://coveralls.io/repos/github/thirunjuguna/easy_rental/badge.svg?branch=master)](https://coveralls.io/github/thirunjuguna/easy_rental?branch=master)
[![Build Status](https://travis-ci.com/thirunjuguna/easy_rental.svg?branch=master)](https://travis-ci.com/thirunjuguna/easy_rental)
## DevelopmentThis project is configured to run in Docker containers facilitated by `docker-compose`. [nib](https://github.com/technekes/nib) is our tool of choice for interacting with `docker-compose` in development.
### Running the app
Use [nib](https://github.com/technekes/nib) to build and start up the web app.
```sh
nib build --pull
nib up
```### Running Tests
The app is configured to use [guard](https://github.com/guard/guard) facilitate running the tests as files change. To start up guard run:
```sh
nib guard web
```Alternatively the specs can be run as a one-off with:
```sh
nib rspec web
```