Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement Supabase #23

Merged
merged 3 commits into from
Feb 19, 2022
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
5 changes: 2 additions & 3 deletions .env.local.example
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
AZURE_AD_CLIENT_ID=<copy Application (client) ID here>
AZURE_AD_CLIENT_SECRET=<copy generated client secret value here>
AZURE_AD_TENANT_ID=<copy the tenant id here>
NEXT_PUBLIC_SUPABASE_URL=YOUR_SUPABASE_URL
NEXT_PUBLIC_SUPABASE_ANON_KEY=YOUR_SUPABASE_ANON_KEY
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module.exports = {
ecmaVersion: 2020, // to enable features such as async/await
project: './tsconfig.json',
},
ignorePatterns: ['node_modules/*', '.next/*'],
ignorePatterns: ['node_modules/*', '.next/*', 'setup/*'],
settings: { react: { version: 'detect' } },
plugins: [
'@typescript-eslint',
Expand Down
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
node_modules/
.next/
.env.local
.env.*.local
.env.*.local

setup/*
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,15 @@
"@chakra-ui/react": "1.8.3",
"@emotion/react": "11.7.1",
"@emotion/styled": "11.6.0",
"@supabase/supabase-js": "^1.30.3",
"framer-motion": "6.2.6",
"next": "12.1.0",
"next-auth": "4.2.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"typescript": "4.5.5"
},
"devDependencies": {
"@fast-csv/parse": "4.3.6",
"@types/node": "17.0.18",
"@types/react": "17.0.39",
"@types/react-dom": "17.0.11",
Expand Down
Loading