Skip to content

Latest commit

 

History

History
23 lines (12 loc) · 654 Bytes

README.md

File metadata and controls

23 lines (12 loc) · 654 Bytes

supabasePayroll

Payroll schema using supabase (postgresql) + nodeJs

Hot is works

Using the supabase API reference to make queries (Link) a simple normalized relational database is used to store event records like vacations, day offs, etc.

the sql/ folder contain the CREATE TABLE code for the schema

Requirements

A supabase project must be created (Link), then, to store the supabase Url and anon Key, a .js file namded "supabaseUrlKey" with the next data structure:

module.exports = {
    supabaseUrl: "",
    supabaseAnonKey: ""
}