https://github.com/timxor/dreamforce_hackathon
Team USF | Fall 2014
https://github.com/timxor/dreamforce_hackathon
Last synced: about 2 months ago
JSON representation
Team USF | Fall 2014
- Host: GitHub
- URL: https://github.com/timxor/dreamforce_hackathon
- Owner: timxor
- Created: 2014-10-11T02:48:09.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2023-03-28T00:02:57.000Z (over 2 years ago)
- Last Synced: 2024-04-13T23:54:56.161Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 5.05 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
DF14HACK_Team_USF = repository-270
=================
Help Force AppTeam Members:
Hao Chen
Wei Fang
Xi Han
Tim Siwula
Wan Zhang Sheng
Dev
bundle
rake db:create
foreman start
Based on Ruby 2.1.2 and Ruby on Rails 4.1.6
Deployed on Heroku
Database is Postgres
API listVerb URI Pattern Controller#Action
GET /categories/:id/tasks(.:format) categories#tasks
GET /categories(.:format) categories#index
POST /categories(.:format) categories#create
GET /categories/new(.:format) categories#new
GET /categories/:id/edit(.:format) categories#edit
GET /categories/:id(.:format) categories#show
PATCH /categories/:id(.:format) categories#update
PUT /categories/:id(.:format) categories#update
DELETE /categories/:id(.:format) categories#destroy
GET /tasks/search/:keyword(.:format) tasks#search
GET /tasks/category/:id(.:format) tasks#category
GET /tasks(.:format) tasks#index
POST /tasks(.:format) tasks#create
GET /tasks/new(.:format) tasks#new
GET /tasks/:id/edit(.:format) tasks#edit
GET /tasks/:id(.:format) tasks#show
PATCH /tasks/:id(.:format) tasks#update
PUT /tasks/:id(.:format) tasks#update
DELETE /tasks/:id(.:format) tasks#destroy
GET /users/:id/posted_tasks(.:format) users#posted_tasks
GET /users/:id/received_tasks(.:format) users#received_tasks
GET /users(.:format) users#index
POST /users(.:format) users#create
GET /users/new(.:format) users#new
GET /users/:id/edit(.:format) users#edit
GET /users/:id(.:format) users#show
PATCH /users/:id(.:format) users#update
PUT /users/:id(.:format) users#update
DELETE /users/:id(.:format) users#destroy
GET / welcome#index