Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: embed Faust.js tutorial walkthrough video #658

Merged
merged 1 commit into from
Nov 19, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 21 additions & 5 deletions docs/tutorial/dev-env-setup.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,24 @@ description: Setting up your development environment with this guide will make y

Use this guide to make your experience developing with Faust.js fast and efficient.

You can also [follow the video companion](https://www.youtube.com/watch?v=i_L_Gl_Pp7g).
<div style={{ position: `relative`, paddingTop: `56.25%`, marginBottom: `1rem` }}>
<iframe
width="100%"
style={{
position: `absolute`,
top: 0,
left: 0,
width: `100%`,
height: `100%`,
border: 0,
}}
src="https://www.youtube.com/embed/i_L_Gl_Pp7g"
title="YouTube video player"
frameBorder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowFullScreen
></iframe>
</div>

## WordPress Site

Expand Down Expand Up @@ -100,9 +117,9 @@ Finally, we recommend you use [VS Code](https://code.visualstudio.com/) for your

In addition, there are a few extensions that will make your experience building headless WordPress sites a lot easier:

* [VS Code ES7 React/Redux/GraphQL/React-Native snippets](https://marketplace.visualstudio.com/items?itemName=dsznajder.es7-react-js-snippets) - A set of snippets for React, Redux, and GraphQL
* [Prettier](https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode) - Opinionated code formatted that enforces a consistent style
* [ESLint](https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint) - A linting tool to find problems in your JavaScript
- [VS Code ES7 React/Redux/GraphQL/React-Native snippets](https://marketplace.visualstudio.com/items?itemName=dsznajder.es7-react-js-snippets) - A set of snippets for React, Redux, and GraphQL
- [Prettier](https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode) - Opinionated code formatted that enforces a consistent style
- [ESLint](https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint) - A linting tool to find problems in your JavaScript

## On Windows

Expand All @@ -111,4 +128,3 @@ If you are using Windows, we suggest you install [Powershell Core](https://docs.
## What's Next?

The next step is to setup your [basic headless site](./basic-headless-site).