Browse Source
Merge pull request #7148 from Budibase/update-posthog-token
Update posthog token
pull/7154/head
Rory Powell
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with
5 additions and
5 deletions
-
.github/workflows/release.yml
-
charts/budibase/values.yaml
-
hosting/single/Dockerfile
-
packages/server/Dockerfile
-
packages/worker/Dockerfile
|
|
|
@ -29,7 +29,7 @@ on: |
|
|
|
|
|
|
|
env: |
|
|
|
# Posthog token used by ui at build time |
|
|
|
POSTHOG_TOKEN: phc_fg5I3nDOf6oJVMHSaycEhpPdlgS8rzXG2r6F2IpxCHS |
|
|
|
POSTHOG_TOKEN: phc_bIjZL7oh2GEUd2vqvTBH8WvrX0fWTFQMs6H5KQxiUxU |
|
|
|
INTERCOM_TOKEN: ${{ secrets.INTERCOM_TOKEN }} |
|
|
|
SENTRY_DSN: ${{ secrets.SENTRY_DSN }} |
|
|
|
PERSONAL_ACCESS_TOKEN : ${{ secrets.PERSONAL_ACCESS_TOKEN }} |
|
|
|
|
|
|
|
@ -91,7 +91,7 @@ globals: |
|
|
|
budibaseEnv: PRODUCTION |
|
|
|
enableAnalytics: "1" |
|
|
|
sentryDSN: "" |
|
|
|
posthogToken: "phc_fg5I3nDOf6oJVMHSaycEhpPdlgS8rzXG2r6F2IpxCHS" |
|
|
|
posthogToken: "phc_bIjZL7oh2GEUd2vqvTBH8WvrX0fWTFQMs6H5KQxiUxU" |
|
|
|
logLevel: info |
|
|
|
selfHosted: "1" # set to 0 for budibase cloud environment, set to 1 for self-hosted setup |
|
|
|
multiTenancy: "0" # set to 0 to disable multiple orgs, set to 1 to enable multiple orgs |
|
|
|
|
|
|
|
@ -37,7 +37,7 @@ ENV \ |
|
|
|
# CUSTOM_DOMAIN=budi001.custom.com \ |
|
|
|
DEPLOYMENT_ENVIRONMENT=docker \ |
|
|
|
MINIO_URL=http://localhost:9000 \ |
|
|
|
POSTHOG_TOKEN=phc_fg5I3nDOf6oJVMHSaycEhpPdlgS8rzXG2r6F2IpxCHS \ |
|
|
|
POSTHOG_TOKEN=phc_bIjZL7oh2GEUd2vqvTBH8WvrX0fWTFQMs6H5KQxiUxU \ |
|
|
|
REDIS_URL=localhost:6379 \ |
|
|
|
SELF_HOSTED=1 \ |
|
|
|
TARGETBUILD=$TARGETBUILD \ |
|
|
|
|
|
|
|
@ -11,7 +11,7 @@ ENV PORT=4001 |
|
|
|
ENV COUCH_DB_URL=https://couchdb.budi.live:5984 |
|
|
|
ENV BUDIBASE_ENVIRONMENT=PRODUCTION |
|
|
|
ENV SERVICE=app-service |
|
|
|
ENV POSTHOG_TOKEN=phc_fg5I3nDOf6oJVMHSaycEhpPdlgS8rzXG2r6F2IpxCHS |
|
|
|
ENV POSTHOG_TOKEN=phc_bIjZL7oh2GEUd2vqvTBH8WvrX0fWTFQMs6H5KQxiUxU |
|
|
|
|
|
|
|
# copy files and install dependencies |
|
|
|
COPY . ./ |
|
|
|
|
|
|
|
@ -22,6 +22,6 @@ EXPOSE 4001 |
|
|
|
ENV NODE_ENV=production |
|
|
|
ENV CLUSTER_MODE=${CLUSTER_MODE} |
|
|
|
ENV SERVICE=worker-service |
|
|
|
ENV POSTHOG_TOKEN=phc_fg5I3nDOf6oJVMHSaycEhpPdlgS8rzXG2r6F2IpxCHS |
|
|
|
ENV POSTHOG_TOKEN=phc_bIjZL7oh2GEUd2vqvTBH8WvrX0fWTFQMs6H5KQxiUxU |
|
|
|
|
|
|
|
CMD ["./docker_run.sh"] |
|
|
|
|