Skip to content

Commit

Permalink
supabaseを追加
Browse files Browse the repository at this point in the history
  • Loading branch information
cp-20 committed Dec 20, 2023
1 parent de74157 commit de38a39
Show file tree
Hide file tree
Showing 15 changed files with 444 additions and 6 deletions.
24 changes: 18 additions & 6 deletions .code-workspace
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,14 @@
"name": "swagger-viewer",
"path": "apps/swagger-viewer"
},
{
"name": "project-root",
"path": "./"
},
{
"name": "supabase-functions",
"path": "supabase/functions"
},
{
"name": "database",
"path": "packages/database"
Expand Down Expand Up @@ -40,12 +48,12 @@
"settings": {
"files.associations": { "turbo.json": "jsonc" },
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.fixAll.tslint": true,
"source.fixAll.stylelint": true,
"source.fixAll": true,
"quickfix.biome": true,
"source.organizeImports.biome": true
"source.fixAll.eslint": "explicit",
"source.fixAll.tslint": "explicit",
"source.fixAll.stylelint": "explicit",
"source.fixAll": "explicit",
"quickfix.biome": "explicit",
"source.organizeImports.biome": "explicit"
},
"eslint.validate": [
"javascript",
Expand All @@ -69,6 +77,10 @@
},
"[typescriptreact]": {
"editor.defaultFormatter": "biomejs.biome"
},

"files.exclude": {
"supabase/functions/": true
}
}
}
1 change: 1 addition & 0 deletions apps/supabase/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.env.*
9 changes: 9 additions & 0 deletions apps/supabase/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"scripts": {
"supabase": "dotenv -c local -- node_modules/supabase/bin/supabase"
},
"devDependencies": {
"dotenv-cli": "^7.3.0",
"supabase": "^1.4.5"
}
}
262 changes: 262 additions & 0 deletions apps/supabase/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions apps/supabase/supabase/.branches/_current_branch
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
main
1 change: 1 addition & 0 deletions apps/supabase/supabase/.temp/gotrue-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v2.109.0
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"imports":{}}
1 change: 1 addition & 0 deletions apps/supabase/supabase/.temp/postgres-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
15.1.0.103
1 change: 1 addition & 0 deletions apps/supabase/supabase/.temp/project-ref
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
qpzeybucecxdukidxczn
1 change: 1 addition & 0 deletions apps/supabase/supabase/.temp/rest-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v11.1.0
1 change: 1 addition & 0 deletions apps/supabase/supabase/.temp/storage-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v0.43.11
Loading

0 comments on commit de38a39

Please sign in to comment.