Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vadim-geroim/grammable
Instagram clone with the Test Driven Development approach.
https://github.com/vadim-geroim/grammable
bootstrap4 carrierwave devise figaro heroku minimagick rails5 rspec ruby simpleform
Last synced: about 23 hours ago
JSON representation
Instagram clone with the Test Driven Development approach.
- Host: GitHub
- URL: https://github.com/vadim-geroim/grammable
- Owner: vadim-geroim
- Created: 2019-09-07T22:09:53.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-19T14:44:04.000Z (almost 2 years ago)
- Last Synced: 2024-11-03T15:04:13.715Z (5 days ago)
- Topics: bootstrap4, carrierwave, devise, figaro, heroku, minimagick, rails5, rspec, ruby, simpleform
- Language: Ruby
- Homepage: https://grammable-vadim-geroim.herokuapp.com/
- Size: 5.89 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 12
-
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.
## 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