mirror of
https://github.com/kou029w/hasura-rest-hands-on.git
synced 2025-01-18 16:08:14 +00:00
fix
This commit is contained in:
parent
65e720f590
commit
a2ab3501d4
4 changed files with 8 additions and 8 deletions
|
@ -5,7 +5,7 @@
|
||||||
これからこのハンズオンで作成するのは次のようなWebアプリです。
|
これからこのハンズオンで作成するのは次のようなWebアプリです。
|
||||||
|
|
||||||
<iframe
|
<iframe
|
||||||
src="https://codesandbox.io/embed/github/kou029w/hasura-rest-hands-on/tree/main/frontend?codemirror=1&hidenavigation=1&view=preview"
|
src="https://codesandbox.io/embed/github/kou029w/hasura-rest-hands-on/tree/main/frontend?codemirror=1&hidenavigation=1&view=preview&module=/src/App.vue"
|
||||||
style="
|
style="
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 500px;
|
height: 500px;
|
||||||
|
@ -22,7 +22,7 @@
|
||||||
- [Hasura Cloud](https://cloud.hasura.io/) - すぐに利用可能なHasuraの環境
|
- [Hasura Cloud](https://cloud.hasura.io/) - すぐに利用可能なHasuraの環境
|
||||||
- [Heroku Postgres](https://jp.heroku.com/postgres) - すぐに利用可能なデータベース
|
- [Heroku Postgres](https://jp.heroku.com/postgres) - すぐに利用可能なデータベース
|
||||||
- [CodeSandbox](https://codesandbox.io/) - フロントエンドのオンライン開発環境
|
- [CodeSandbox](https://codesandbox.io/) - フロントエンドのオンライン開発環境
|
||||||
- [Vue 3](https://v3.vuejs.org/) - プログレッシブWebフレームワーク
|
- [Vue 3](https://vuejs.org/) - プログレッシブWebフレームワーク
|
||||||
- [Quill](https://quilljs.com/) - リッチテキストエディター
|
- [Quill](https://quilljs.com/) - リッチテキストエディター
|
||||||
|
|
||||||
それではさっそく作っていきましょう!
|
それではさっそく作っていきましょう!
|
||||||
|
|
|
@ -15,4 +15,4 @@ Hasuraのコンソールにアクセスすると、実際にデータが更新
|
||||||
|
|
||||||
![](https://lh3.googleusercontent.com/twteosRUkmMlBoa8PXU3UXC9umek-TzQ1kwOWZIShW7fKvW_4tVtG7B3Ue-olldhxh05x1JTFtt_Oxn2nLxcDPEGBv32bkE2zjpqL7heEjV54jkDgYqOm1tEq02qvnKoqu5yaSKRZA=w800)
|
![](https://lh3.googleusercontent.com/twteosRUkmMlBoa8PXU3UXC9umek-TzQ1kwOWZIShW7fKvW_4tVtG7B3Ue-olldhxh05x1JTFtt_Oxn2nLxcDPEGBv32bkE2zjpqL7heEjV54jkDgYqOm1tEq02qvnKoqu5yaSKRZA=w800)
|
||||||
|
|
||||||
Hasuraを使用してPostgresデータベースに接続したREST APIを構築し、それを利用したWebアプリを作成しました。
|
Hasuraを使用してPostgresデータベースに接続したREST APIを構築し、それを利用したWebアプリを作成できました🎉
|
||||||
|
|
|
@ -4,7 +4,10 @@
|
||||||
|
|
||||||
認証には、Webhookを介する方法とJWTを介する方法があります。
|
認証には、Webhookを介する方法とJWTを介する方法があります。
|
||||||
|
|
||||||
より詳しい情報は、[公式ドキュメント](https://hasura.io/docs/latest/graphql/core/auth/index.html) を参照してください。
|
より詳しい情報は、[公式ドキュメント](https://hasura.io/docs/latest/graphql/core/auth/index.html) や、公式チュートリアルを参照してください。
|
||||||
|
|
||||||
|
- [Hasura GraphQL チュートリアル](https://hasura.io/learn/graphql/hasura/introduction/)
|
||||||
|
- [Hasura GraphQL チュートリアル (日本語版)](https://hasura.io/learn/ja/graphql/hasura/introduction/)
|
||||||
|
|
||||||
## CORSの設定
|
## CORSの設定
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,3 @@
|
||||||
# 参考文献
|
# 参考文献
|
||||||
|
|
||||||
- [Hasura GraphQL Docs](https://hasura.io/docs/latest/graphql/core/index.html)
|
[Hasura GraphQL Docs](https://hasura.io/docs/latest/graphql/core/index.html)
|
||||||
- [Hasura GraphQL チュートリアル](https://hasura.io/learn/graphql/hasura/introduction/)
|
|
||||||
- [Hasura GraphQL チュートリアル (日本語版)](https://hasura.io/learn/ja/graphql/hasura/introduction/)
|
|
||||||
- [Hasura GraphQL API サーバーを Heroku に構築後、Auth0 で権限認証 - YouTube](https://www.youtube.com/watch?v=nxnn_VhfoQM)
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue