MartaJopp / TODO_Wknd3

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

To Do, To Do, To Do...Weekend 3 Challenge

An interactive "To Do List" application. Allows users to input tasks to their "To Do List", check when completed and delete tasks. Upon input of task - defaults that the task has not yet been completed.

-Live demo

Built With

  • PostgreSQL
  • Express
  • jQuery
  • Node
  • Bootstrap

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the on a live system.

Prerequisites

Installing

Steps to get the development environment running.

In a terminal window, navigate to the project folder once saved on your computer.

  • Run npm install
  • Make sure postgreSQL is running in an open terminal window
  • npm start
CREATE TABLE "tasks" (
	"id" serial primary key,
	"todo" character varying,
	"completed" boolean
	);

Screen Shot

To Do

Completed Features

  • Users can add tasks. Default to not complete upon adding.
  • Users can mark items complete.
  • Users can delete tasks.

About


Languages

Language:JavaScript 82.1%Language:HTML 12.7%Language:CSS 5.3%