[U] vercel deployment

This commit is contained in:
Jan 2020-11-16 18:25:24 +01:00
parent e60084e919
commit 5c92f3035d
3 changed files with 57 additions and 1 deletions

2
.gitignore vendored
View file

@ -49,3 +49,5 @@ baseline.json
# Ignore .history for the xyz.local-history VSCode extension
.history
.secret
.vercel

51
.vercelignore Normal file
View file

@ -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

View file

@ -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'
};