Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Environment variables
*/*.env*
*.env*

# Node Modules
*/node_modules/*
node_modules
10 changes: 10 additions & 0 deletions database/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Database

### Setup
Create a `.env` file in the `database` folder, and add `SUPABASE_KEY="<key>"`. Contact Vash for the API key.

### Run code
Run `npm run dev` to run the test file that adds two rows to the Topics database, then queries them

### TODO
* Configure Row Level Security (RLS) policies on the Topics table for security.
Loading