https://github.com/dorijanh/notion-clone
Full-stack Notion clone
https://github.com/dorijanh/notion-clone
Last synced: 2 months ago
JSON representation
Full-stack Notion clone
- Host: GitHub
- URL: https://github.com/dorijanh/notion-clone
- Owner: DorijanH
- Created: 2023-10-13T22:52:24.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-21T21:30:43.000Z (over 1 year ago)
- Last Synced: 2025-01-28T17:45:47.941Z (4 months ago)
- Language: TypeScript
- Homepage: https://notes-app-dorijanh.vercel.app
- Size: 1.15 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
![]()
Jotion
![]()
## 🛠Prerequisites
+ [Node](https://nodejs.org/en) version >= 18.x
+ [pnpm](https://pnpm.io/) package manager
+ Code editor ([Visual Studio Code](https://code.visualstudio.com/) recommended)## 🔰 Getting started
### Clone the repository
The easiest way to get started is to scaffoled a copy of the repository by using [degit](https://github.com/Rich-Harris/degit).```bash
pnpm dlx degit https://github.com/DorijanH/notion-clone notion-clone
```### Installing dependencies
Installing dependencies is done by running the following command```bash
pnpm i
```### Environmental variables
Create a local configuration file `.env.local` using the `.env.local.example` template### Running the application
In order for the application to work, both the backend and frontend need to be running in their own terminals:#### Running the Convex backend
```bash
pnpm dlx convex dev
```#### Running the frontend app
```bash
pnpm dev
```