https://github.com/kenmeriftw/task-manager
Backend for TaskManager via Ruby on Rails
https://github.com/kenmeriftw/task-manager
test-task
Last synced: 11 months ago
JSON representation
Backend for TaskManager via Ruby on Rails
- Host: GitHub
- URL: https://github.com/kenmeriftw/task-manager
- Owner: kenmeriftw
- Created: 2021-06-15T12:46:22.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-06-17T07:54:06.000Z (over 4 years ago)
- Last Synced: 2025-01-27T12:50:00.364Z (about 1 year ago)
- Topics: test-task
- Language: Ruby
- Homepage: https://oblako-task-manager.herokuapp.com/
- Size: 162 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TaskManager
The backend part of test-task for Oblako Group. It works with Angular-frontend now, both of apps are deployed on Heroku (links
There are three API-methods available now:
- GET /projects — return all the Projects with Todos related;
- POST /todos — creates a new Todo;
- PATCH /projects/id/todo/id — updates Todo.
Feel free to visit the Heroku deploy-page or to use the provided API!
To run this application locally on your machine, you have to have `ruby-2.7.2` installed. Then,
- clone this repo using
```
git clone git@github.com:knmrftw/task-manager.git
```
- make `cd` into new directory
- run
```
bundle
```
to install all the required Gems
- run
```
rails db:create
rails db:migrate
```
to create the development Database and run all the required migrations in it.
- finally, you may run
```
rails s
```
to start the local server, which may be found on `localhost:3000`