Skip to content

Commit

Permalink
Merge pull request #3 from dev-lawful/stage
Browse files Browse the repository at this point in the history
Version 0.1.0 release
  • Loading branch information
juanzitelli authored Jul 4, 2022
2 parents 7fc2904 + 06ea443 commit b1645c8
Show file tree
Hide file tree
Showing 107 changed files with 20,687 additions and 10,966 deletions.
2 changes: 2 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
SUPABASE_URL=
SUPABASE_ANON_KEY=
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ node_modules
/build/
/public/build
/api/index.js
/api/index.js.map
7 changes: 0 additions & 7 deletions api/index.js.map

This file was deleted.

10 changes: 10 additions & 0 deletions app/_types/entities.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import type { definitions } from "./supabase";

export type Board = definitions["boards"];
export type BoardState = definitions["boardStates"];
export type Initiative = definitions["initiatives"];
export type Organization = definitions["organizations"];
export type Task = definitions["tasks"];
export type Team = definitions["teams"];
export type Message = definitions["messages"];
export type Chat = definitions["chats"];
3 changes: 3 additions & 0 deletions app/_types/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export * from "./supabase";
export * from "./entities";
export * from "./models";
4 changes: 4 additions & 0 deletions app/_types/models.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
export interface CustomResponse<T> {
data: Array<T>;
error: string | null;
}
Loading

1 comment on commit b1645c8

@vercel
Copy link

@vercel vercel bot commented on b1645c8 Jul 4, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.