Skip to content

Commit

Permalink
Merge pull request #406 from aziontech/remove-real-time-refs
Browse files Browse the repository at this point in the history
[ENG-28596 ] feat: remove realtime refs
  • Loading branch information
csfeijo authored Dec 2, 2023
2 parents f8bf00f + 3144d24 commit e7e7b7c
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 15 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ cd azion-platform-kit

The webapp is now available on the following URL: http://localhost:5173

PRO-TIP (OPTIONAL) - To save some time, you can create a personal token in [Azion Realtime Manager](https://manager.azion.com/iam/personal-tokens) and save it into file `.env.development`
PRO-TIP (OPTIONAL) - To save some time, you can create a personal token in [Real Time Manager](https://manager.azion.com/iam/personal-tokens) and save it into file `.env.development`

```cmd
echo 'VITE_PERSONAL_TOKEN=PERSONALTOKEN' > .env.development
Expand Down Expand Up @@ -93,7 +93,7 @@ Note: We are launching a new version of AzionCLI. Stay tuned for a new way to pu

The top features include:

1. **Multi-tenancy:** Build your Real Time Manager according to your needs by consuming the endpoints from our Public API: [Azion Public API](https://api.azion.com)
1. **Multi-tenancy:** Build your Azion Console according to your needs by consuming the endpoints from our Public API: [Azion Public API](https://api.azion.com)
2. **Customizable UI:** configure theme tokens or generate them automatically via [Builder](https://designer.primevue.org/) in your project, giving the look and feel according to your needs.
3. **Simple structure:** layered separation of blocks, components and services so that it is easy to build a new route in a very short time.

Expand Down
2 changes: 1 addition & 1 deletion cypress/e2e/example.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
describe('My First Test', () => {
it('visits the app root url', () => {
cy.visit('/login')
cy.getByTestId('title').should('have.text', ' Real-Time Manager ')
cy.getByTestId('title').should('have.text', ' Azion Console ')
})
})
12 changes: 7 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
type="font/woff"
crossorigin
/>

<link
rel="preload"
href="https://fonts.azion.com/roboto/roboto-black.woff"
Expand All @@ -29,21 +29,23 @@
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<title>Real-Time Manager</title>
<title>Azion Console</title>

<!-- Font preloads -->
<link
rel="preload"
href="https://fonts.azion.com/roboto/roboto-regular.woff"
as="font"
type="font/woff"
crossorigin />
crossorigin
/>
<link
rel="preload"
href="https://fonts.azion.com/roboto/roboto-black.woff"
as="font"
type="font/woff"
crossorigin />
crossorigin
/>
</head>
<body>
<div id="app"></div>
Expand All @@ -53,7 +55,7 @@
></script>
<noscript>
<strong
>We're sorry but Real-Time Manager doesn't work properly without JavaScript enabled. Please
>We're sorry but Azion Console doesn't work properly without JavaScript enabled. Please
enable it to continue.</strong
>
</noscript>
Expand Down
2 changes: 1 addition & 1 deletion src/templates/mfa-authenticate-block/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<div class="flex flex-col gap-3">
<div class="text-xl font-medium">Multi-Factor Authentication</div>
<div class="text-color-secondary">
Open your authentication app and enter the generated code to access Real-Time Manager.
Open your authentication app and enter the generated code to access Azion Console.
</div>
</div>

Expand Down
6 changes: 3 additions & 3 deletions src/templates/sign-in-block/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
>
<h3
data-testid="title"
class="text-xl md:text-2xl font-medium"
class="text-xl md:text-2xl font-medium text-center"
>
Real-Time Manager
Azion Console
</h3>
<div class="flex flex-col gap-6">
<div class="flex flex-col gap-2">
Expand Down Expand Up @@ -95,7 +95,7 @@
class="surface-card surface-border border max-w-md w-full p-6 sm:p-8 rounded-md flex-col gap-6 flex"
>
<div class="flex flex-col gap-6 sm:gap-8">
<h3 class="text-xl md:text-2xl font-medium">Real-Time Manager</h3>
<h3 class="text-xl md:text-2xl font-medium">Azion Console</h3>
<div class="flex items-center gap-2">
<PrimeButton
v-tooltip.top="{ value: 'Back', showDelay: 200 }"
Expand Down
2 changes: 1 addition & 1 deletion src/templates/sign-in-block/reset-password.vue
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
<div class="flex flex-col gap-3">
<div class="text-xl md:text-2xl font-medium">Password Reset Complete</div>
<p class="text-color-secondary">
Your password has been successfully reset. Sign in to Real-Time Manager to use Azion
Your password has been successfully reset. Sign in to Azion Console to use Azion
products and services.
</p>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ describe('HelpCenterServices', () => {
await sut(fixtures.markdownDocument)
const document = `---
docs: [
'Get to know Real-Time Manager',
'Get to know Azion Console',
'Get started'
]
---
Expand Down
2 changes: 1 addition & 1 deletion src/views/EdgeNode/FormFields/FormFieldsEdgeNode.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<FormHorizontal
title="Main Settings"
description="Each node needs to run the Azion Orchestration software. It enables the
communication between your private node and Azion Real-Time Manager, where
communication between your private node and Azion Console, where
you can manage your Edge Applications, Edge Functions, and many other Azion
services."
>
Expand Down

0 comments on commit e7e7b7c

Please sign in to comment.