Skip to content

A ToDo app designed to allow me to see how different technologies solve similar problems.

Notifications You must be signed in to change notification settings

wley3337/ToDo-Project

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 

Repository files navigation

ToDo project

The goal of this project is to build out a ToDo app with frontends and backend APIs using different technologies as I learn and grow.

Frontends:

Backends:

All Backends require a PostgreSQL DB

DEV DB

  • Name: todo_rails_api_development
  • Tables:
    • users { first_name: string, last_name: string, username: string, password_digest: string, created_at: datetime, updated_at: datetime }

    • lists { user_id: integer, heading: string, display_order: integer, created_at: datetime, updated_at: datetime }

    • to_dos { list_id: integer, title: string, description: string { default: ""}, due: datetime, created_at: datetime, updated_at: datetime }

TEST DB

  • Name: todo_rails_api_test
  • Tables:
    • users { first_name: string, last_name: string, username: string, password_digest: string, created_at: datetime, updated_at: datetime }

    • lists { user_id: integer, heading: string, display_order: integer, created_at: datetime, updated_at: datetime }

    • to_dos { list_id: integer, title: string, description: string { default: ""}, due: datetime, created_at: datetime, updated_at: datetime }

About

A ToDo app designed to allow me to see how different technologies solve similar problems.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published