Skip to content

Commit

Permalink
changed deployed room id to test_ec
Browse files Browse the repository at this point in the history
  • Loading branch information
Spiral-Memory committed Aug 26, 2024
1 parent d4214c4 commit f2e00df
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 12 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,10 @@ permissions:
pages: write
id-token: write

env:
env:
STORYBOOK_RC_HOST: "https://demo.qa.rocket.chat"

RC_ROOM_ID: "66ccc4f1e050428c76256939"

jobs:
build-and-deploy:
runs-on: ubuntu-latest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export default {
export const Aqua_Breeze = {
args: {
host: process.env.STORYBOOK_RC_HOST || 'http://localhost:3000',
roomId: 'GENERAL',
roomId: process.env.RC_ROOM_ID || 'GENERAL',
channelName: 'general',
anonymousMode: true,
headerColor: 'white',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default {
export const Pine_Whisper = {
args: {
host: process.env.STORYBOOK_RC_HOST || 'http://localhost:3000',
roomId: 'GENERAL',
roomId: process.env.RC_ROOM_ID || 'GENERAL',
channelName: 'general',
anonymousMode: true,
headerColor: 'white',
Expand Down
2 changes: 1 addition & 1 deletion packages/react/src/stories/EmbeddedChat.stories.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export default {
export const Simple = {
args: {
host: process.env.STORYBOOK_RC_HOST || 'http://localhost:3000',
roomId: 'GENERAL',
roomId: process.env.RC_ROOM_ID || 'GENERAL',
channelName: 'general',
anonymousMode: true,
headerColor: 'white',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export default {
export const WithAuthToken = {
args: {
host: process.env.STORYBOOK_RC_HOST || 'http://localhost:3000',
roomId: 'GENERAL',
roomId: process.env.RC_ROOM_ID || 'GENERAL',
channelName: 'general',
anonymousMode: true,
headerColor: 'white',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export default {
export const Secure_Auth = {
args: {
host: process.env.STORYBOOK_RC_HOST || 'http://localhost:3000',
roomId: 'GENERAL',
roomId: process.env.RC_ROOM_ID || 'GENERAL',
channelName: 'general',
anonymousMode: true,
headerColor: 'white',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export default {
export const WithOAuth = {
args: {
host: process.env.STORYBOOK_RC_HOST || 'http://localhost:3000',
roomId: 'GENERAL',
roomId: process.env.RC_ROOM_ID || 'GENERAL',
channelName: 'general',
anonymousMode: true,
headerColor: 'white',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export default {
export const With_Remote_Opt = {
args: {
host: process.env.STORYBOOK_RC_HOST || 'http://localhost:3000',
roomId: 'GENERAL',
roomId: process.env.RC_ROOM_ID || 'GENERAL',
channelName: 'general',
anonymousMode: true,
headerColor: 'white',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export default {
export const Stormy_Seas = {
args: {
host: process.env.STORYBOOK_RC_HOST || 'http://localhost:3000',
roomId: 'GENERAL',
roomId: process.env.RC_ROOM_ID || 'GENERAL',
channelName: 'general',
anonymousMode: true,
headerColor: 'white',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export const Mint_Meadow = {
title: 'Colorful/MintMeadow',
args: {
host: process.env.STORYBOOK_RC_HOST || 'http://localhost:3000',
roomId: 'GENERAL',
roomId: process.env.RC_ROOM_ID || 'GENERAL',
channelName: 'general',
anonymousMode: true,
headerColor: 'white',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export default {
export const Default = {
args: {
host: process.env.STORYBOOK_RC_HOST || 'http://localhost:3000',
roomId: 'GENERAL',
roomId: process.env.RC_ROOM_ID || 'GENERAL',
channelName: 'general',
anonymousMode: true,
headerColor: 'white',
Expand Down

0 comments on commit f2e00df

Please sign in to comment.