(doc): readme changes
This commit is contained in:
parent
55e5136e88
commit
370e056a2b
|
|
@ -0,0 +1,23 @@
|
|||
# watchtogether
|
||||
|
||||
This was a project that I created over 7 days of working while having covid :)
|
||||
|
||||
I probably won't do much with the codebase, but enjoy how I basically figured out how to sync video streams with multiple clients
|
||||
|
||||
## The Stack
|
||||
|
||||
- frontend
|
||||
|
||||
- next js
|
||||
- websockets
|
||||
- chakra-ui
|
||||
- react-player
|
||||
|
||||
- backend
|
||||
|
||||
- go
|
||||
- gorilla/websockets
|
||||
|
||||
## how 2 deploy?
|
||||
|
||||
you don't
|
||||
|
|
@ -0,0 +1 @@
|
|||
# backend
|
||||
|
|
@ -1,39 +1 @@
|
|||
# Example app with [chakra-ui](https://github.com/chakra-ui/chakra-ui) and TypeScript
|
||||
|
||||
This example features how to use [chakra-ui](https://github.com/chakra-ui/chakra-ui) as the component library within a Next.js app with TypeScript.
|
||||
|
||||
Next.js and chakra-ui have built-in TypeScript declarations, so we'll get autocompletion for their modules straight away.
|
||||
|
||||
We are connecting the Next.js `_app.js` with `chakra-ui`'s Provider and theme so the pages can have app-wide dark/light mode. We are also creating some components which shows the usage of `chakra-ui`'s style props.
|
||||
|
||||
## Preview
|
||||
|
||||
Preview the example live on [StackBlitz](http://stackblitz.com/):
|
||||
|
||||
[](https://stackblitz.com/github/vercel/next.js/tree/canary/examples/with-chakra-ui-typescript)
|
||||
|
||||
## Deploy your own
|
||||
|
||||
Deploy the example using [Vercel](https://vercel.com?utm_source=github&utm_medium=readme&utm_campaign=next-example):
|
||||
|
||||
[](https://vercel.com/new/git/external?repository-url=https://github.com/vercel/next.js/tree/canary/examples/with-chakra-ui-typescript&project-name=with-chakra-ui-typescript&repository-name=with-chakra-ui-typescript)
|
||||
|
||||
## How to use
|
||||
|
||||
### Using `create-next-app`
|
||||
|
||||
Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app) with [npm](https://docs.npmjs.com/cli/init) or [Yarn](https://yarnpkg.com/lang/en/docs/cli/create/) to bootstrap the example:
|
||||
|
||||
```bash
|
||||
npx create-next-app --example with-chakra-ui-typescript with-chakra-ui-typescript-app
|
||||
# or
|
||||
yarn create next-app --example with-chakra-ui-typescript with-chakra-ui-typescript-app
|
||||
```
|
||||
|
||||
Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)).
|
||||
|
||||
## Notes
|
||||
|
||||
Chakra has supported Gradients and RTL in `v1.1`. To utilize RTL, [add RTL direction and swap](https://chakra-ui.com/docs/features/rtl-support).
|
||||
|
||||
If you don't have multi-direction app, you should make `<Html lang="ar" dir="rtl">` inside `_document.ts`.
|
||||
# frontend
|
||||
|
|
|
|||
Loading…
Reference in New Issue