Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 1 day 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 (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-19T15:04:06.000Z (almost 2 years ago)
- Last Synced: 2024-10-29T14:15:20.808Z (10 days 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
![Screenshot](/app/assets/images/home_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