Skip to content

boxboat-github-practice/simple-tracker-frontend

 
 

Repository files navigation

simple-tracker

Skeleton structure for a work tracking web app in vanilla javascript. Meant to be forked and extended

features

  • api server
  • fronted

does not feature

  • authentication
  • styling
  • input validation
  • gui elements for modifying/deleting data
  • database
  • tests
  • ci/cd automation
---
title: Schema
---
erDiagram
  EMPLOYEE }|--o{ HISTORY : employeeId 
  EMPLOYEE {
    int id
    string name
    string github
  }
  CLIENT }|--o{ HISTORY : clientId
  CLIENT{
    int id
    string name
    string url
  }
  CONTRACT }|--o{ HISTORY: contractId
  CONTRACT {
    int id
    int clientId
    string type
    date startDate
    date endDate
    list tech
  }
  HISTORY{
    int id
    int clientId
    int employeeId
    int contractId
    string employeeName
    string clientName
    string role
  }
Loading

About

Frontend to the Simple Tracker App for tracking work history

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages

  • TypeScript 80.3%
  • JavaScript 17.0%
  • HTML 2.6%
  • CSS 0.1%