Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/donrestarone/dealbuildr
https://github.com/donrestarone/dealbuildr
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/donrestarone/dealbuildr
- Owner: donrestarone
- Created: 2021-05-08T12:23:35.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-05-09T14:06:22.000Z (over 3 years ago)
- Last Synced: 2024-10-10T04:40:54.005Z (3 months ago)
- Language: Ruby
- Size: 183 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# README
## running the app
In dev mode, the app uses a bind mount to allow hot code reloading (via zeitwerk/spring). Ensure that docker and docker compose is installed. Then run the following to bootstrap the application:
``` bash
docker-compose build && docker-compose up
docker-compose run --rm deal_app rails db:create
docker-compose run --rm deal_app rails db:migrate
```
After the build phase passes, you will be able to visit the application on http://localhost:4250/# running the test suite
There is a basic minitest suite that exercises all the functions of the application, including PDF generation. To run it simply:``` bash
sudo chmod +x run_tests.sh
./run_tests.sh
```