Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vadim-geroim/splurty
A database-powered quote generator app.
https://github.com/vadim-geroim/splurty
bootstrap4 heroku rails5 ruby simpleform
Last synced: 1 day ago
JSON representation
A database-powered quote generator app.
- Host: GitHub
- URL: https://github.com/vadim-geroim/splurty
- Owner: vadim-geroim
- Created: 2019-07-01T11:42:19.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-19T13:34:19.000Z (almost 2 years ago)
- Last Synced: 2023-03-06T17:25:11.855Z (over 1 year ago)
- Topics: bootstrap4, heroku, rails5, ruby, simpleform
- Language: Ruby
- Homepage: https://splurty-vadim-geroim.herokuapp.com
- Size: 1010 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# README
This README document steps are necessary to get the application up and running.
## Wireframes
The Splurty Home page
![Screenshot](/app/assets/images/home_page.png)
____________________________________________________________________________________________________________________________
Add-a-Quote Form
![Screenshot](/app/assets/images/add_quote_form_page.png)
____________________________________________________________________________________________________________________________
About page
![Screenshot](/app/assets/images/about_page.png)
____________________________________________________________________________________________________________________________
## Precondition
* Ruby version 2.5.3 installed
* Ruby on Rails version 5.2.3 installed## Configuration
To get started with the app, clone the repo and then install the needed gems:
````
bundle install --without production
````## Database creation and initialization
Next, migrate the database:
````
rails db:migrate
````## Services (job queues, cache servers, search engines, etc.)
Run the app in a local server:
````
rails server
````## Deployment instructions
Following instructions for Heroku:* Login to your Heroku account
````
heroku login
````
* Create Heroku app
````
heroku create your_app_name
````
* Deploy an application
````
git push heroku master
````
* Initialize database
````
heroku run rails db:migrate
heroku restart
````
* The application should be up and running