diff --git a/.gitignore b/.gitignore index 367d769..2b2173c 100644 --- a/.gitignore +++ b/.gitignore @@ -49,3 +49,5 @@ baseline.json # Ignore .history for the xyz.local-history VSCode extension .history .secret + +.vercel diff --git a/.vercelignore b/.vercelignore new file mode 100644 index 0000000..cba04ca --- /dev/null +++ b/.vercelignore @@ -0,0 +1,51 @@ +.DS_STORE + +/dist/ +/bazel-out +/integration/bazel/bazel-* +*.log +node_modules + +# Include when developing application packages. +pubspec.lock +.c9 +.idea/ +.devcontainer/* +!.devcontainer/README.md +!.devcontainer/recommended-devcontainer.json +!.devcontainer/recommended-Dockerfile +.settings/ +.vscode/launch.json +.vscode/settings.json +.vscode/tasks.json +*.swo +modules/.settings +modules/.vscode +.vimrc +.nvimrc + +# Don't check in secret files +*secret.js + +# Ignore npm/yarn debug log +npm-debug.log +yarn-error.log + +# build-analytics +.build-analytics + +# rollup-test output +/modules/rollup-test/dist/ + +# User specific bazel settings +.bazelrc.user + +# User specific ng-dev settings +.ng-dev.user* + +.notes.md +baseline.json + +# Ignore .history for the xyz.local-history VSCode extension +.history +.secret \ No newline at end of file diff --git a/src/environments/environment.prod.ts b/src/environments/environment.prod.ts index 3612073..f8f7c56 100644 --- a/src/environments/environment.prod.ts +++ b/src/environments/environment.prod.ts @@ -1,3 +1,6 @@ export const environment = { - production: true + production: true, + supa_url: 'https://wdklwjgycvhxpbbnrpto.supabase.co', + supa_key: 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJyb2xlIjoiYW5vbiIsImlhdCI6MTYwMzQ2OTMyOCwiZXhwIjoxOTE5MDQ1MzI4fQ.KunzEloX8UoOAK8fGbiZtAi9bMxB_Ap8GVcJFWyPx0Q', + version: '0.0.1' };