https://github.com/vedanthb/le-docs
This is document editor app deployed on the cloud, completely responsive real-time app made with Tailwind CSS & Next.js.
https://github.com/vedanthb/le-docs
nextjs tailwindcss
Last synced: about 2 months ago
JSON representation
This is document editor app deployed on the cloud, completely responsive real-time app made with Tailwind CSS & Next.js.
- Host: GitHub
- URL: https://github.com/vedanthb/le-docs
- Owner: VedanthB
- Created: 2021-07-13T10:57:09.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-07-13T15:07:02.000Z (almost 5 years ago)
- Last Synced: 2025-01-01T17:13:15.591Z (over 1 year ago)
- Topics: nextjs, tailwindcss
- Language: JavaScript
- Homepage: https://forms-react-firebase.vercel.app
- Size: 271 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# docs/forms clone (Next.js, Rich Text Editor, Tailwind CSS & Firebase)🔥🔥🔥🔥🔥
completely responsive real-time Google Docs clone with Tailwind CSS & Next.js.
live :
# Technologies and packages used 🔥🔥🔥🔥🔥
NextJS | Firebase | Next-Auth | Draft-JS | Material-Tailwind | Tailwind CSS | Next-Auth/Firebase-Adapter | React-Firebase-Hooks | React-Draft-wysiwyg
### Installing dependencies
If you use yarn then run
```bash
yarn install
```
and if you use npm delete yarn.lock and run
```bash
npm install
```
### Creating a new branch
```bash
git checkout -b new-feature
```
### Starting server
If you are using yarn then run
```bash
yarn dev
```
and if you using npm run
```bash
npm run dev
```
### Setting up next auth
If you don't know about next auth follow this
[tutorial](https://medium.com/geekculture/why-and-how-to-get-started-with-next-auth-61740558b45b "Next auth crash course")
tutorial and get your credentials.
And your .env.local file will look like this
```bash
GOOGLE_CLIENT_ID=client_id
GOOGLE_CLIENT_SECRET=client_secret
NEXTAUTH_URL=http://localhost:3000/
```