Skip to content

Commit

Permalink
Fix environment links
Browse files Browse the repository at this point in the history
  • Loading branch information
Guillermo Gonzalez committed Aug 20, 2024
1 parent 59fe2bd commit 815c3c4
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
12 changes: 6 additions & 6 deletions apps/blog/src/environments/environment.dev.ts
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
import { Environment } from '@dcs-libs/shared';

export const environment = {
apiUrl: 'https://api-dev.binary-coffee.dev/',
graphqlUrl: 'https://api-dev.binary-coffee.dev/graphql',
siteUrl: 'https://dev.binary-coffee.dev',
siteDashboardUrl: 'https://dev.binary-coffee.dev/dashboard',
apiUrl: 'https://api-dev.binarycoffee.dev/',
graphqlUrl: 'https://api-dev.binarycoffee.dev/graphql',
siteUrl: 'https://dev.binarycoffee.dev',
siteDashboardUrl: 'https://dev.binarycoffee.dev/dashboard',
googleAnalyticsId: 'UA-157555549-2',
production: true,
postPageSize: 12,
socials: {
facebook: 'https://facebook.com/Binary-Coffee-111577483710684/',
github: 'https://github.com/binary-coffee-dev',
github: 'https://github.com/binarycoffee-dev',
telegram: 'https://t.me/binarycoffeedev',
twitter: 'https://twitter.com/CoffeeBinary/'
},
contactMail: 'mailto:website@binary-coffee.dev'
contactMail: 'mailto:website@binarycoffee.dev'
} as Environment;
14 changes: 7 additions & 7 deletions apps/dashboard/src/environments/environment.dev.ts
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
import { Environment } from '@dcs-libs/shared';

export const environment = {
apiUrl: 'https://api-dev.binary-coffee.dev/',
graphqlUrl: 'https://api-dev.binary-coffee.dev/graphql',
podcastApiUrl: 'https://api-dev.binary-coffee.dev/podcasts/',
siteUrl: 'https://dev.binary-coffee.dev',
siteDashboardUrl: 'https://dev.binary-coffee.dev/dashboard',
apiUrl: 'https://api-dev.binarycoffee.dev/',
graphqlUrl: 'https://api-dev.binarycoffee.dev/graphql',
podcastApiUrl: 'https://api-dev.binarycoffee.dev/podcasts/',
siteUrl: 'https://dev.binarycoffee.dev',
siteDashboardUrl: 'https://dev.binarycoffee.dev/dashboard',
production: false,
local: false,
githubClientId: '3fdd7684a78a0896c870',
isDashboard: true,
socials: {
facebook: 'https://facebook.com/Binary-Coffee-111577483710684/',
github: 'https://github.com/binary-coffee-dev',
github: 'https://github.com/binarycoffee-dev',
telegram: 'https://t.me/binarycoffeedev',
twitter: 'https://twitter.com/CoffeeBinary/'
},
contactMail: 'mailto:website@binary-coffee.dev'
contactMail: 'mailto:website@binarycoffee.dev'
} as Environment;

0 comments on commit 815c3c4

Please sign in to comment.