Git Product home page Git Product logo

productivity-ninja's Introduction

Productivity Ninja: Project / Task Management Website

Copyright Chad Bowler, Kwon Kyung, Maridon Romney updated Aug 7, 2023 see License below.

License: MIT

Description

The Productivity Ninja is an interactive front end with a back-end Restful API that can track the progress of Projects and their tasks. This API utilizes SQL databases to store Users, Tasks, Projects and dynamic Javascript and Handlebars to add/edit and delete Projects and their respective tasks.

Git Repository link: https://github.com/ChadBowler/Productivity-Ninja

Heroku Live URL link: https://productivity-ninja-d6cc6908ff4d.herokuapp.com

Table of Contents

  1. Installation
  2. Usage
  3. License
  4. Contribution Guidelines
  5. Tests
  6. Questions

Installation

To install this code, create a git repository or make a copy of this one and pull the code to a local device.

Usage

To use this code make sure you have installed the necessary packages, libraries and frameworks. You may need to set up a local MySQL in order to use and implement the seed data. To use the deployed app simply login using one of the database generic "users" or sign up. Create Projects and their Tasks as needed, editing and deleting when necessary.

License

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Contribution Guidelines

Contributions are welcome. Please create an independent branch and go through the customary and polite channels to initiate collaboration.

Tests

No tests have been written for this file set. Passive debugging processes were undertaken to ensure the compatability and functionality of this website and its moving parts.

Questions

For additional questions or comments you can reach us here:

productivity-ninja's People

Contributors

chadbowler avatar mkromney avatar kyungkwon01 avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar

productivity-ninja's Issues

Create User model

Create User model
{

Id: {}
Name:{}
Username:{}
Password:{}
Project_id:{}

}

Schema

Create a schema file for database

Associations

Create associations file
RELATIONSHIPS: Users may have many Tasks, and only one Project. Tasks only have one User, and one Project. Projects have many Users, and many Tasks.

Project.hasmany(User){
}
Project.hasmany(Task){
}
User.hasmany(Tasks):{
}
User belongsTo(Project){
}
Task.belongsTo(User):{
}
Task.belongsTo(Project){
}

POST Comment

Create a POST route for creating a new comment

Create Task model

Create Task model
{
ID:{}
Name: {}
Status: {complete/not complete}
Comments: {}
Priority: {numerical out of 5}
User_id:{}
Project_id{}
}

Add Functions

Create js functions to add users, tasks, projects, and comments

API Index

Create an index file inside the api folder

Create folders

Create folders we'll use in the project.
models
views - layouts, partials
controllers - api
config
db
utils
public - assets - css, js

Home Routes

Create a file in the controllers folder for home routes

GET Users

Create a GET route to get all users

User Routes

Create a user routes file inside the api folder

Tasks Routes

Create a task routes file inside the api folder

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.