https://github.com/vadim-geroim/todo
Todo app helps to automate your daily routines
https://github.com/vadim-geroim/todo
factory-bot-rails javascript rails5 rspec-rails ruby
Last synced: 5 months ago
JSON representation
Todo app helps to automate your daily routines
- Host: GitHub
- URL: https://github.com/vadim-geroim/todo
- Owner: vadim-geroim
- Created: 2019-09-27T22:32:27.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2023-01-19T15:04:06.000Z (over 3 years ago)
- Last Synced: 2025-02-14T07:36:38.986Z (over 1 year ago)
- Topics: factory-bot-rails, javascript, rails5, rspec-rails, ruby
- Language: Ruby
- Homepage: https://todoster-vadim-geroim.herokuapp.com/
- Size: 115 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 9
-
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
Home page

____________________________________________________________________________________________________________________________
## 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