Skip to content

Commit 78c856c

Browse files
divyabhushanrikinsk
authored andcommitted
docs: update the hasura sample apps links
PR-URL: hasura/graphql-engine-mono#3693 Co-authored-by: Rikin Kachhia <[email protected]> GitOrigin-RevId: e27ae1727496acb1077433d5715df39edc438b06
1 parent 557a3d4 commit 78c856c

20 files changed

+95
-94
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Read more at [hasura.io](https://hasura.io) and the [docs](https://hasura.io/doc
5858
- [Brand assets](#brand-assets)
5959
- [License](#license)
6060
- [Translations](#translations)
61-
61+
6262
<!-- markdown-toc end -->
6363

6464
## Quickstart:
@@ -138,16 +138,16 @@ Check out all the example applications in the [community/sample-apps](community/
138138

139139
- Group Chat application built with React, includes a typing indicator, online users & new
140140
message notifications.
141-
- [Try it out](https://realtime-chat.demo.hasura.app/)
141+
- [Try it out](https://realtime-chat.demo.hasura.io/)
142142
- [Tutorial](community/sample-apps/realtime-chat)
143143

144144
- Live location tracking app that shows a running vehicle changing current GPS
145145
coordinates moving on a map.
146-
- [Try it out](https://realtime-location-tracking.demo.hasura.app/)
146+
- [Try it out](https://realtime-location-tracking.demo.hasura.io/)
147147
- [Tutorial](community/sample-apps/realtime-location-tracking)
148148

149149
- A realtime dashboard for data aggregations on continuously changing data.
150-
- [Try it out](https://realtime-poll.demo.hasura.app/)
150+
- [Try it out](https://realtime-poll.demo.hasura.io/)
151151
- [Tutorial](community/sample-apps/realtime-poll)
152152

153153
### Videos

community/sample-apps/realtime-chat-vue/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ This is the source code for a fully working group chat app that uses subscriptio
55
[![Edit chat-app](https://codesandbox.io/static/img/play-codesandbox.svg)](https://codesandbox.io/s/github/hasura/graphql-engine/tree/master/community/sample-apps/realtime-chat-vue?fontsize=14)
66

77
- [Fully working app](https://realtime-chat-vue.hasura.app/)
8-
- [Backend](https://realtime-chat.demo.hasura.app/console)
8+
- [Backend](https://realtime-chat.demo.hasura.io/console)
99

1010
- For a tutorial how to do that check out this [blog post](https://dev.to/hasurahq/realtime-chat-app-with-vue-and-hasura-202h)
1111
- For Vue and GraphQL course check out these [video series](https://dev.to/hasurahq/vue-and-graphql-with-hasura-video-course-3mpp)

community/sample-apps/realtime-chat-vue/src/views/Home.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<div class="hasura-logo">
66
<img src="https://graphql-engine-cdn.hasura.io/img/powered_by_hasura_black.svg" @click="windowOpen" alt="Powered by Hasura"/>
77
&nbsp; | &nbsp;
8-
<a href="https://realtime-chat.demo.hasura.app/console" target="_blank" rel="noopener noreferrer">
8+
<a href="https://realtime-chat.demo.hasura.io/console" target="_blank" rel="noopener noreferrer">
99
Backend
1010
</a>
1111
&nbsp; | &nbsp;

community/sample-apps/realtime-chat/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ Run this example with Docker: `docker compose up -d --build`
66

77
[![Edit chat-app](https://codesandbox.io/static/img/play-codesandbox.svg)](https://codesandbox.io/s/github/hasura/graphql-engine/tree/master/community/sample-apps/realtime-chat?fontsize=14)
88

9-
- [Fully working app](https://realtime-chat.demo.hasura.app/)
10-
- [Backend](https://realtime-chat.demo.hasura.app/console)
9+
- [Fully working app](https://realtime-chat.demo.hasura.io/)
10+
- [Backend](https://realtime-chat.demo.hasura.io/console)
1111

1212
Adapted from the [original blogpost by Rishichandra Wawhal](https://hasura.io/blog/building-a-realtime-chat-app-with-graphql-subscriptions-d68cd33e73f).
1313

docs/graphql/core/event-triggers/samples.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@ Makes a mutation based on the event payload. It helps in understanding database
3131
Push Notifications
3232
^^^^^^^^^^^^^^^^^^
3333

34-
Here's a `notification demo app <https://serverless-push.demo.hasura.app/>`__ showcasing sending web
34+
Here's a `notification demo app <https://serverless-push.demo.hasura.io/>`__ showcasing sending web
3535
notifications using Hasura event triggers and FCM.
3636

3737
* Video: https://www.youtube.com/watch?v=nuSHkzE2-zo&feature=youtu.be
3838
* Source code: https://github.com/hasura/graphql-engine/tree/master/community/sample-apps/serverless-push
3939

4040
Data Transformations (ETL)
4141
^^^^^^^^^^^^^^^^^^^^^^^^^^
42-
Here's a `serverless ETL demo app <https://serverless-etl.demo.hasura.app/>`__ built using Hasura event triggers and
42+
Here's a `serverless ETL demo app <https://serverless-etl.demo.hasura.io/>`__ built using Hasura event triggers and
4343
Algolia search.
4444

4545
* Video: https://youtu.be/kWVEBWdEVAA

docs/graphql/core/guides/sample-apps/index.rst

+8-8
Original file line numberDiff line numberDiff line change
@@ -54,14 +54,14 @@ Repositories
5454
Working apps
5555
------------
5656

57-
- `WhatsApp clone <https://whatsapp-clone.demo.hasura.app/sign-in>`__
58-
- `Realtime todo app <https://react-apollo-todo.demo.hasura.app/>`__
59-
- `Group chat app <https://realtime-chat.demo.hasura.app/>`__
60-
- `Location tracking app <https://realtime-location-tracking.demo.hasura.app/>`__
61-
- `Realtime poll app <https://realtime-poll.demo.hasura.app/>`__
62-
- `Web push notifications demo <https://serverless-push.demo.hasura.app/>`_
63-
- `Serverless ETL demo <https://serverless-etl.demo.hasura.app/>`__
64-
- `3 factor app demo <https://3factor.hasura.app/>`__
57+
- `WhatsApp clone <https://whatsapp-clone.demo.hasura.io/sign-in>`__
58+
- `Realtime todo app <https://react-apollo-todo.demo.hasura.io/>`__
59+
- `Group chat app <https://realtime-chat.demo.hasura.io/>`__
60+
- `Location tracking app <https://realtime-location-tracking.demo.hasura.io/>`__
61+
- `Realtime poll app <https://realtime-poll.demo.hasura.io/>`__
62+
- `Web push notifications demo <https://serverless-push.demo.hasura.io/>`_
63+
- `Serverless ETL demo <https://serverless-etl.demo.hasura.io/>`__
64+
- `3 factor app demo <https://3factor.hasura.io/>`__
6565

6666
Videos
6767
------

event-triggers.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ Serverless/cloud-function platforms covered by boilerplates:
6868
Trigger push notifications and emails based on database events. Try the demo and tutorial below to see how browser push notifications are triggered when the user inserts some data:
6969

7070
* [Watch demo](https://www.youtube.com/watch?v=nuSHkzE2-zo)
71-
* [Try it out](https://serverless-push.demo.hasura.app/)
71+
* [Try it out](https://serverless-push.demo.hasura.io/)
7272
* [Tutorial](community/sample-apps/serverless-push)
7373

7474

@@ -88,7 +88,7 @@ Convert complex, long-running business logic to be event-driven, asynchronous an
8888
Transform and load data into external data-stores. Check out this demo and tutorial below to see how Postgres data is transformed to build and populate an Algolia index:
8989

9090
* [Watch demo](https://youtu.be/kWVEBWdEVAA)
91-
* [Try it out](https://serverless-etl.demo.hasura.app/)
91+
* [Try it out](https://serverless-etl.demo.hasura.io/)
9292
* [Tutorial](community/sample-apps/serverless-etl)
9393

9494
### Building reactive UX for your async backend with realtime GraphQL

translations/README.bosnian.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -131,19 +131,19 @@ Pogledajte sve primjere dostupne u
131131
### Stvarne aplikacije
132132

133133
- Aplikacija za grupno dopisivanje koja koristi React, uključuje pokazatelj tipkanja, online korisnike & obavijesti o novim porukama.
134-
- [Isprobajte odmah](https://realtime-chat.demo.hasura.app/)
134+
- [Isprobajte odmah](https://realtime-chat.demo.hasura.io/)
135135
- [Tutorijal](../community/sample-apps/realtime-chat)
136-
- [Pogledaj API](https://realtime-chat.demo.hasura.app/console)
136+
- [Pogledaj API](https://realtime-chat.demo.hasura.io/console)
137137

138138
- Aplikacija za praćenje lokacije vozila uživo koja prikazuje GPS koordinate dok se vozilo kreće po mapi..
139-
- [Isprobajte odmah](https://realtime-location-tracking.demo.hasura.app/)
139+
- [Isprobajte odmah](https://realtime-location-tracking.demo.hasura.io/)
140140
- [Tutorijal](../community/sample-apps/realtime-location-tracking)
141-
- [Pogledaj API](https://realtime-location-tracking.demo.hasura.app/console)
141+
- [Pogledaj API](https://realtime-location-tracking.demo.hasura.io/console)
142142

143143
- Nadzorna ploča u stvarnom vremenu koja objedinjuje podatke o kontinuirano mijenjanim podacima.
144-
- [Isprobajte odmah](https://realtime-poll.demo.hasura.app/)
144+
- [Isprobajte odmah](https://realtime-poll.demo.hasura.io/)
145145
- [Tutorijal](../community/sample-apps/realtime-poll)
146-
- [Pogledaj API](https://realtime-poll.demo.hasura.app/console)
146+
- [Pogledaj API](https://realtime-poll.demo.hasura.io/console)
147147

148148
### Video
149149

translations/README.chinese.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -128,19 +128,19 @@ GraphQL Engine提供了易用,可伸缩,高性能的往后端插入自定义
128128
### 实时应用
129129

130130
- 使用React构建的群聊应用程序,包括正在输入指示器,在线用户和新消息通知
131-
- [试试看](https://realtime-chat.demo.hasura.app/)
131+
- [试试看](https://realtime-chat.demo.hasura.io/)
132132
- [讲解](../community/sample-apps/realtime-chat)
133-
- [浏览API](https://realtime-chat.demo.hasura.app/console)
133+
- [浏览API](https://realtime-chat.demo.hasura.io/console)
134134

135135
- 实时位置跟踪应用程序,显示行驶中的车辆正在更改当前GPS坐标在地图上移动
136-
- [试试看](https://realtime-location-tracking.demo.hasura.app/)
136+
- [试试看](https://realtime-location-tracking.demo.hasura.io/)
137137
- [讲解](../community/sample-apps/realtime-location-tracking)
138-
- [浏览API](https://realtime-location-tracking.demo.hasura.app/console)
138+
- [浏览API](https://realtime-location-tracking.demo.hasura.io/console)
139139

140140
- 实时仪表板,用于聚合不断变化的数据
141-
- [试试看](https://realtime-poll.demo.hasura.app/)
141+
- [试试看](https://realtime-poll.demo.hasura.io/)
142142
- [讲解](../community/sample-apps/realtime-poll)
143-
- [浏览API](https://realtime-poll.demo.hasura.app/console)
143+
- [浏览API](https://realtime-poll.demo.hasura.io/console)
144144

145145
### 视频
146146

translations/README.french.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -122,20 +122,20 @@ Consultez toutes les applications d'example dans le répertoire
122122

123123
- Application de messagerie de groupe développée avec React, incluant un indicateur de frappe, les utilisateurs connectés & les
124124
notifications de nouveaux messages.
125-
- [Essayez la](https://realtime-chat.demo.hasura.app/)
125+
- [Essayez la](https://realtime-chat.demo.hasura.io/)
126126
- [Tutoriel](../community/sample-apps/realtime-chat)
127-
- [Explorez les APIs](https://realtime-chat.demo.hasura.app/console)
127+
- [Explorez les APIs](https://realtime-chat.demo.hasura.io/console)
128128

129129
- Application de localisation en temps-réel montrant un véhicule dont les coordonnées GPS évoluent
130130
se déplacer sur une carte.
131-
- [Essayez la](https://realtime-location-tracking.demo.hasura.app/)
131+
- [Essayez la](https://realtime-location-tracking.demo.hasura.io/)
132132
- [Tutoriel](../community/sample-apps/realtime-location-tracking)
133-
- [Explorez les APIs](https://realtime-location-tracking.demo.hasura.app/console)
133+
- [Explorez les APIs](https://realtime-location-tracking.demo.hasura.io/console)
134134

135135
- Un tableau de bord temps-réel pour l'aggrégation de données en constante évolution.
136-
- [Essayez la](https://realtime-poll.demo.hasura.app/)
136+
- [Essayez la](https://realtime-poll.demo.hasura.io/)
137137
- [Tutoriel](../community/sample-apps/realtime-poll)
138-
- [Explorez les APIs](https://realtime-poll.demo.hasura.app/console)
138+
- [Explorez les APIs](https://realtime-poll.demo.hasura.io/console)
139139

140140
### Vidéos
141141

translations/README.german.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -134,21 +134,21 @@ Schaue dir die Beispiele in dem
134134
- Gruppenchat entwickelt mit React, beinhaltet einen Typenanzeiger, Online Users und Benachrichtigungen bei
135135
neuen Nachrichten.
136136

137-
- [Probiere es aus](https://realtime-chat.demo.hasura.app/)
137+
- [Probiere es aus](https://realtime-chat.demo.hasura.io/)
138138
- [Tutorial](../community/sample-apps/realtime-chat)
139-
- [Durchsuche die APIs](https://realtime-chat.demo.hasura.app/console)
139+
- [Durchsuche die APIs](https://realtime-chat.demo.hasura.io/console)
140140

141141
- Echtzeit Standort Tracking App, welche die Koordinaten von Fahrzeugen
142142
verfolgt und auf einer Karte anzeigt.
143143

144-
- [Probiere es aus](https://realtime-location-tracking.demo.hasura.app/)
144+
- [Probiere es aus](https://realtime-location-tracking.demo.hasura.io/)
145145
- [Tutorial](../community/sample-apps/realtime-location-tracking)
146-
- [Durchsuche die APIs](https://realtime-location-tracking.demo.hasura.app/console)
146+
- [Durchsuche die APIs](https://realtime-location-tracking.demo.hasura.io/console)
147147

148148
- Echtzeit Dashboard für Datenaggregation von sich konstant ändernden Daten.
149-
- [Probiere es aus](https://realtime-poll.demo.hasura.app/)
149+
- [Probiere es aus](https://realtime-poll.demo.hasura.io/)
150150
- [Tutorial](../community/sample-apps/realtime-poll)
151-
- [Durchsuche die APIs](https://realtime-poll.demo.hasura.app/console)
151+
- [Durchsuche die APIs](https://realtime-poll.demo.hasura.io/console)
152152

153153
### Videos
154154

translations/README.greek.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -126,19 +126,19 @@
126126
### Εφαρμογές σε πραγματικό χρόνο
127127

128128
- Μια ομαδική εφαρμογή ανταλλαγής μηνυμάτων που αναπτύχθηκε με το React, συμπεριλαμβανομένων χαρακτηριστικών όπως δείκτη πληκτρολόγησης, ένδειξη ενεργών χρηστών και ειδοποιήσεις νέων μηνυμάτων.
129-
- [Δοκιμάστε το](https://realtime-chat.demo.hasura.app/)
129+
- [Δοκιμάστε το](https://realtime-chat.demo.hasura.io/)
130130
- [Tutorial](https://github.com/hasura/graphql-engine/tree/stable/community/sample-apps/realtime-chat)
131-
- [Εξερευνήστε APIs](https://realtime-chat.demo.hasura.app/console)
131+
- [Εξερευνήστε APIs](https://realtime-chat.demo.hasura.io/console)
132132

133133
- Εφαρμογή εντοπισμού θέσης σε πραγματικό χρόνο που δείχνει όχημα του οποίου οι συντεταγμένες GPS μετακινούνται συνεχώς σε χάρτη.
134-
- [Δοκιμάστε το](https://realtime-location-tracking.demo.hasura.app/)
134+
- [Δοκιμάστε το](https://realtime-location-tracking.demo.hasura.io/)
135135
- [Tutorial](https://github.com/hasura/graphql-engine/tree/stable/community/sample-apps/realtime-location-tracking)
136-
- [Εξερευνήστε APIs](https://realtime-location-tracking.demo.hasura.app/console)
136+
- [Εξερευνήστε APIs](https://realtime-location-tracking.demo.hasura.io/console)
137137

138138
- Πίνακας ελέγχου σε πραγματικό χρόνο για συνεχώς μεταβαλλόμενη συνάθροιση δεδομένων.
139-
- [Δοκιμάστε το](https://realtime-poll.demo.hasura.app/)
139+
- [Δοκιμάστε το](https://realtime-poll.demo.hasura.io/)
140140
- [Tutorial](https://github.com/hasura/graphql-engine/tree/stable/community/sample-apps/realtime-poll)
141-
- [Εξερευνήστε APIs](https://realtime-poll.demo.hasura.app/console)
141+
- [Εξερευνήστε APIs](https://realtime-poll.demo.hasura.io/console)
142142

143143
### Videos
144144

translations/README.indonesian.md

+7-6
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ Baca lebih lanjut di [hasura.io](https://hasura.io) dan [dokumentasinya](https:/
4141
## Daftar isi
4242
<!-- markdown-toc **start** - Don't edit this section. Run M-x markdown-toc-refresh-toc -->
4343
**Daftar isi**
44+
4445
- [Mulai dengan cepat:](#mulai-dengan-cepat)
4546
- [Jalankan dengan satu klik di Heroku](#jalankan-dengan-satu-klik-di-heroku)
4647
- [Pilihan menjalankan aplikasi dengan satu klik lainnya](#pilihan-menjalankan-aplikasi-dengan-satu-klik-lainnya)
@@ -128,19 +129,19 @@ Coba lihat seluruh contoh aplikasi pada direktori [_community/sample-apps_](../c
128129
### Aplikasi _realtime_
129130

130131
- Aplikasi _chat_ untuk grup yang dibuat menggunakan React. Termasuk indikator pengetikan, pengguna _online_ & notifikasi pesan baru.
131-
- [Coba aplikasinya](https://realtime-chat.demo.hasura.app/)
132+
- [Coba aplikasinya](https://realtime-chat.demo.hasura.io/)
132133
- [Tutorial](../community/sample-apps/realtime-chat)
133-
- [Lihat-lihat API](https://realtime-chat.demo.hasura.app/console)
134+
- [Lihat-lihat API](https://realtime-chat.demo.hasura.io/console)
134135

135136
- Aplikasi pelacak yang menyiarkan lokasi secara langsung dengan memperlihatkan kendaraan berjalan dengan posisi koordinat GPS yang berubah-ubah pada peta.
136-
- [Coba aplikasinya](https://realtime-location-tracking.demo.hasura.app/)
137+
- [Coba aplikasinya](https://realtime-location-tracking.demo.hasura.io/)
137138
- [Tutorial](../community/sample-apps/realtime-location-tracking)
138-
- [Lihat-lihat API](https://realtime-location-tracking.demo.hasura.app/console)
139+
- [Lihat-lihat API](https://realtime-location-tracking.demo.hasura.io/console)
139140

140141
- Sebuah dasbor _realtime_ untuk meng-agregasi data yang berubah secara terus menerus.
141-
- [Coba aplikasinya](https://realtime-poll.demo.hasura.app/)
142+
- [Coba aplikasinya](https://realtime-poll.demo.hasura.io/)
142143
- [Tutorial](../community/sample-apps/realtime-poll)
143-
- [Lihat-lihat API](https://realtime-poll.demo.hasura.app/console)
144+
- [Lihat-lihat API](https://realtime-poll.demo.hasura.io/console)
144145

145146
### Video
146147

translations/README.japanese.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -127,19 +127,19 @@ PostgreSQLのデータを変換するか、あるいはその上でビジネス
127127
### リアルタイムアプリケーション
128128

129129
- Reactを使用して構築されたグループチャットアプリケーション。タイピングインジケーター、オンラインユーザー、新しいメッセージ通知が含まれます。
130-
- [試してみよう](https://realtime-chat.demo.hasura.app/)
130+
- [試してみよう](https://realtime-chat.demo.hasura.io/)
131131
- [チュートリアル](../community/sample-apps/realtime-chat)
132-
- [APIの参照](https://realtime-chat.demo.hasura.app/console)
132+
- [APIの参照](https://realtime-chat.demo.hasura.io/console)
133133

134134
- 現在の場所を追跡できるアプリ。地図上を移動する乗り物の現在のGPS座標を表示します。
135-
- [試してみよう](https://realtime-location-tracking.demo.hasura.app/)
135+
- [試してみよう](https://realtime-location-tracking.demo.hasura.io/)
136136
- [チュートリアル](../community/sample-apps/realtime-location-tracking)
137-
- [APIの参照](https://realtime-location-tracking.demo.hasura.app/console)
137+
- [APIの参照](https://realtime-location-tracking.demo.hasura.io/console)
138138

139139
- 常にに変化するデータを集約するリアルタイムダッシュボード。
140-
- [試してみよう](https://realtime-poll.demo.hasura.app/)
140+
- [試してみよう](https://realtime-poll.demo.hasura.io/)
141141
- [チュートリアル](../community/sample-apps/realtime-poll)
142-
- [APIの参照](https://realtime-poll.demo.hasura.app/console)
142+
- [APIの参照](https://realtime-poll.demo.hasura.io/console)
143143

144144
### 動画
145145

translations/README.korean.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -129,19 +129,19 @@ Postrgres에서 데이터를 변환하거나 GraphQL Engine 에 쿼리를 요청
129129
### 리얼타임_어플리케이션
130130

131131
- React 기반으로 만든 그룹챗 어플리케이션, typing indicator를 포함한, 온라인 유저 & 메세지 수신 알람
132-
- [Try it out](https://realtime-chat.demo.hasura.app/)
132+
- [Try it out](https://realtime-chat.demo.hasura.io/)
133133
- [Tutorial](../community/sample-apps/realtime-chat)
134-
- [Browse APIs](https://realtime-chat.demo.hasura.app/console)
134+
- [Browse APIs](https://realtime-chat.demo.hasura.io/console)
135135

136136
- 달리는 차량 에서 현재 GPS 위치를 지도에 실시간으로 보여주는 위치 트래킹 앱
137-
- [Try it out](https://realtime-location-tracking.demo.hasura.app/)
137+
- [Try it out](https://realtime-location-tracking.demo.hasura.io/)
138138
- [Tutorial](../community/sample-apps/realtime-location-tracking)
139-
- [Browse APIs](https://realtime-location-tracking.demo.hasura.app/console)
139+
- [Browse APIs](https://realtime-location-tracking.demo.hasura.io/console)
140140

141141
- 지속적으로 변화되는 데이터를 집계하는 리얼타임 대시보드
142-
- [Try it out](https://realtime-poll.demo.hasura.app/)
142+
- [Try it out](https://realtime-poll.demo.hasura.io/)
143143
- [Tutorial](../community/sample-apps/realtime-poll)
144-
- [Browse APIs](https://realtime-poll.demo.hasura.app/console)
144+
- [Browse APIs](https://realtime-poll.demo.hasura.io/console)
145145

146146
### 영상
147147

0 commit comments

Comments
 (0)